Search code examples
.htaccessforwarding

How can I forward ALL pages to the same exact page on a different domain using .htaccess?


How can I do a 301 redirect of ALL pages on a site to the same exact page on a different domain using .htaccess?

For example, forward:

www.currentdomain.com/page1.php    
www.currentdomain.com/page2.php?p=1&t=75       
www.currentdomain.com/archived/old/page100.php

To:

www.newdomain.com/page1.php    
www.newdomain.com/page2.php?p=1&t=75       
www.newdomain.com/archived/old/page100.php

Solution

  • According to about.com's article, the following should redirect ALL traffic to a new domain:

    RewriteEngine ON
    RewriteRule ^(.*)$ http://newdomain.com/$1 [R=301,L]