If I wanted 301 redirect the index page of a domain (www.domain.com/) to another domain (www.mysite.com/) but allow everything else through (www.domain.com/images/pic.gif)... how would I do this via htaccess?
ta![]()
This is a discussion on .htaccess index 301 redirect within the Off-Topic & Chit Chat forums, part of the Focus on Members category; If I wanted 301 redirect the index page of a domain ( www.domain.com/ ) to another domain ( www.mysite.com/ ) ...
If I wanted 301 redirect the index page of a domain (www.domain.com/) to another domain (www.mysite.com/) but allow everything else through (www.domain.com/images/pic.gif)... how would I do this via htaccess?
ta![]()
2011 Average: 1 post every 5 seconds... 24/7
oh I forgot to say that it must only be domain.com/ that redirects it's root directory as there are other domains parked on that account![]()
2011 Average: 1 post every 5 seconds... 24/7
You can use the following code in .htaccess:
Code:RewriteEngine on RewriteCond %{HTTP_HOST} domain\.com RewriteRule ^$ http://www.mysite.com/ [L,R=301]
Oleg Ignatiuk / Crawlability Inc.
Security vbulletin - Patch Level for all supported versions released!
Unveiling the NEW vBSEO Sitemap Generator 3.0. - available NOW for vBSEO Customers!
Lovely job, thank you Oleg![]()
2011 Average: 1 post every 5 seconds... 24/7
You are welcome![]()
Oleg Ignatiuk / Crawlability Inc.
Security vbulletin - Patch Level for all supported versions released!
Unveiling the NEW vBSEO Sitemap Generator 3.0. - available NOW for vBSEO Customers!