Domain redirection using .htaccess - Apache

Domain redirection

Snippet Code


  
Rate this page :
  [ 0 votes]

Just add the code in your .htaccess file to do domain redirection

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

Tags


Ask Questions

Ask Question