Skip to content

Instantly share code, notes, and snippets.

@nciske
Created July 28, 2012 05:34
Show Gist options
  • Save nciske/3191934 to your computer and use it in GitHub Desktop.
Save nciske/3191934 to your computer and use it in GitHub Desktop.
Redirect One Domain To Another Using Mod_rewrite
#http://www.dzone.com/snippets/redirect-one-domain-another
Options +FollowSymLinks
RewriteEngine on
RewriteCond %{HTTP_HOST} ^www.old-domain.com$ [NC]
RewriteRule ^(.*)$ http://www.new-domain.com/$1 [R=301,L]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment