Skip to content

Instantly share code, notes, and snippets.

@j26design
Last active December 20, 2015 21:01
Show Gist options
  • Save j26design/0b1d8c74225200c8b74d to your computer and use it in GitHub Desktop.
Save j26design/0b1d8c74225200c8b74d to your computer and use it in GitHub Desktop.
Redirect from old domain to new domain
## Redirect from olddomain to newdomain
<IfModule mod_rewrite.c>
RewriteEngine On
# Redirect to non-www
RewriteCond %{HTTP_HOST} ^olddomain\.com$ [OR]
RewriteCond %{HTTP_HOST} ^www\.olddomain\.com$
RewriteRule (.*)$ http://newdomain.com/$1 [R=301,L]
# Redirect to www
RewriteCond %{HTTP_HOST} ^olddomain\.com$ [OR]
RewriteCond %{HTTP_HOST} ^www\.olddomain\.com$
RewriteRule (.*)$ http://www.newdomain.com/$1 [R=301,L]
</IfModule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment