Google’s Keyword Search Tool<\/a>. I think it largely depends on the verticle you’re operating in. So you’ve locked down this great domain, and you’re planning to point it to your main site via a redirect at your registrar or a 301 redirect. Not so fast sparky. Domains contain inherent Page Rank, and Google doesn’t like you just throwing around that hard earned Page Rank at whatever you’d like. You might be able to get away with it if you have one or two domains (though I wouldn’t recommend chancing it), but ratchet that number up to ten, twenty or beyond and you could be skirting with trouble in the form of a Google Penalty. Unnatural Links Penalty to be exact.<\/p>\nThat’s why if you are going to employ this method of harvesting traffic you have to do it smart. I may have taken a sledgehammer to this nail, but I wanted to be sure I had this sucker taken care of. So originally, I had the exact-match domain setup to point to a related page on the interior of my main site through a redirect in my domain registrar’s management console. It turns out that the domain was showing up in the search results and, yep, passing page rank. A big no no.<\/p>\n
To combat this, I changed the nameservers to point to a bargin basement webhost (iPower in this instance), setup a new folder in the directory which I pointed the domain to, and finally put a .htaccess and a index.php in the root directory. For the mystified Windows folks out there, we are working on a Linux box. My goal here was to redirect the traffic without passing along that page juice. I also needed the domain purged from Google’s index. So our keys here were nofollow, noindex.<\/p>\n
Here is the .htaccess file:<\/p>\n
\n#set env var MY_SET-HEADER to 1\nRewriteRule .* - [E=MY_SET_HEADER:1]\n\n#if MY_SET_HEADER is present then set header \nHeader set X-Robots-Tag \"noindex, nofollow\" env=MY_SET_HEADER\n<\/pre>\nThis file seems to be the real critical one for purging the domain from Google’s search index. I had also tried a robots.txt file with the index.php, and the combo did nothing to get it out of the index. Since the .htaccess largely handles the deindexing and stops the Googlebot in its tracks, the index.php file will handle the redirect. <\/p>\n
Here is the index.php file:<\/p>\n
\n\n