How do i redirect an entire website to another domain?., For example: domain.com > Anotherdomain.com/index.php domain.com/<anything/<anything.html> > Anotherdomain.com/index.php domain.com/<anything>/anything/........ > Anotherdomain.com/index.php thru .htacess Pls help Sarathy.s
sreyas Not to completely hijack the thread.... I have a bunch of domains (common misspellings of my main domain) that I want everything to be redirected to the main domain. Your code would do that, except that I don't want it to redirect if the visitor is at newdomain.com... is there a correct way to check to see if they are on "newdomain.com" don't transfer, otherwise if they are on something else (ie "newdomian.com") transfer? RewriteEngine on RewriteRule ^/(.+) http://newdomain.com/$1 [R,L] Code (markup):
Hi, I din't clearly get your query, but upto what I understand. If you want to redirect, newdmain.com, newdomian.com etc to your main domain just put this code that particular domains .htaccess file. And you dont need to put the same in correct newdomain.com, it just work without any change. Am I upto your query? Do update
RewriteEngine On RewriteBase / RewriteCond %{HTTP_HOST} !^newdomain\.com$ RewriteRule ^(.*)$ http://newdomain.com/$1 [L,R=301] Code (markup): Or R=302