Mod_rewrite: Redirect Domains

To redirect one domain to another on an Apache Server, using Apache Mod_rewrite, place this code in your .htaccess file:

[CODE]
RewriteEngine on
RewriteCond %{HTTP_HOST} ^(www\.)?domain1\.com [NC]
RewriteRule ^(.*)$ http://domain2.com/$1 [R=301,L]
[/CODE]

Comments are closed.