Skip to content

Instantly share code, notes, and snippets.

@anandkumar
Created July 28, 2013 06:40
Show Gist options
  • Save anandkumar/6097680 to your computer and use it in GitHub Desktop.
Save anandkumar/6097680 to your computer and use it in GitHub Desktop.
.htaccess domain change
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTP_HOST} ^old-domain.com$ [OR]
RewriteCond %{HTTP_HOST} ^www.old-domain.com$
RewriteRule (.*)$ http://www.new-domain.com/$1 [R=301,L]
</IfModule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment