Posted by the1brit on November 15, 2012 at 11:47pm
I am moving my website from one domain name to another domain name. I want to keep most of my SEO ranking so I want to do a 301 or 302 redirect of all of the pages. Is there a module that can 301 or 302 redirect a whole domain and all of its pages? How do I go about doing this?
Comments
htaccess.....
RewriteEngine OnRewriteCond %{HTTP_HOST} ^old.abc.com$
RewriteRule (.*)$ http://www.new.com/$1 [R=301,L]
Source:
http://www.orderofbusiness.net/blog/redirect-old-domain-to-new-domain-vi...
All URLs
Does this redirect al of the urls?