Skip to content

Instantly share code, notes, and snippets.

@wwwbruno
Created January 7, 2014 18:04
Show Gist options
  • Save wwwbruno/8303715 to your computer and use it in GitHub Desktop.
Save wwwbruno/8303715 to your computer and use it in GitHub Desktop.
Regra de redirecionamento definitivo do apache para site com mais de um domínio
RewriteEngine on
RewriteCond %{HTTP_HOST} ^siteantigo.com.br$ [OR]
RewriteCond %{HTTP_HOST} ^www.siteantigo.com.br$ [OR]
RewriteCond %{HTTP_HOST} ^sitenovo.com.br$
RewriteRule (.*)$ http://www.sitenovo.com.br/$1 [R=301,L]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment