How do I redirect from one domain to another via .htaccess? Can there be a rule that will redirect mydomain.com/anything to mydomain1.com?
This is a discussion on Redirect via .htaccess within the General Discussion forums, part of the vBulletin SEO Discussion category; How do I redirect from one domain to another via .htaccess? Can there be a rule that will redirect mydomain.com/anything ...
How do I redirect from one domain to another via .htaccess? Can there be a rule that will redirect mydomain.com/anything to mydomain1.com?
Hi,
Something like:
Should do the trick.Code:RewriteCond %{HTTP_HOST} !^www\.domain\.com RewriteRule (.*) http://www.domain1.com/$1 [R=301,L]
Ace Shattock / Crawlability Inc.
vBSEO 3.6.0 GOLD Released!
Unveiling the NEW vBSEO Sitemap Generator 3.0. - available NOW for vBSEO Customers!
My Personal Sites: New Zealand Forum | vBulletin Modifications and Styles | New Zealand Food | New Zealand Android OS Talk | vBulletin Hosting
Hi reefland
Create a .htaccess file with the below code, it will ensure that all your directories and pages of your old domain will get correctly redirected to your new domain.
The .htaccess file needs to be placed in the root directory of your old website (i.e the same directory where your index file is placed)
RewriteEngine on
RewriteRule (.*) http://www.newdomain.com/$1 [R=301,L]
REPLACE www.newdomain.com in the above code with your actual domain name.