I got one of my domain banned from showing adsense, so I parked another domain in it, then I redirect the main banned domain to this new park domain. Things are all intact except that the main domain remain till I have to manually change it to the park one. Example: http://banneddomain.com/vault/lc.php redirect to http://parkdomain.com/vault/lc.php It is not automatically changed when I entered the link of banneddomain, and I have to do it manually. Any solution?
A lot of parking providers do not allow redirected traffic to parked pages. I would notify the parking provider to make sure you don't get your account banned. Sorry if that's not what you wanted to hear (I know you were looking for a technical answer), but I just had to post it for informational purposes.
Well, I got two options here: 1. This one will work only I have to change the domain manually RewriteEngine On RewriteCond %{HTTP_HOST} ^totalcollection.info$ [OR] RewriteCond %{HTTP_HOST} ^www.totalcollection.info$ RewriteRule ^/?$ "http\:\/\/defensive\-pro\.com" [R=301,L] Code (markup): 2. This one the domain automatically changes, but it returns something strange after the link like http://newdomain.com/vault/news.html?file=news RewriteEngine on Redirect 301 /vault/ http://www.newdomain.com/vault/ Code (markup):