Forum Moderators: Robert Charlton & goodroi
I could ask visitors to click on a nofollow link for the moved page.
Or I could use Javascript
Is your home page the one that has the most bad links (that generated the Penguin penalty)? In theory, until you can remove enough links, if you get lots of direct traffic, you could have your home page serve a 404 response, but still keep the functionality of it for direct traffic landings.
Or you could make a new home page (/home.html) and again 404 your original home page.
robots.txtUser-Agent: *
Disallow: /blocked-page.php
.htaccessRewriteEngine on
RewriteRule !^(:?robots\.txt|blocked-page\.php)$ http://www.example.com/blocked-page.php?goto=%{REQUEST_URI} [R=301,L]
Added Note on the Preceding RewriteRule: I had one host (years ago) where I had to code the left-side of the rule as: (:?robots\.txt)|(:?blocked-page\.php) to get it to work on a full file location match for some reason. It's definitely non-standard to the best of my knowledge, but after hours of head scratching and even posting to see if anyone could find a flaw with the initial rule I finally changed the pattern to parenthesis on both side of the | and got it to work. Go figure.
blocked-page.php
JD_Toims provides the complete solution here - Best Way To Redirect Home Page Without Forwarding Penalty / Penguin:
If the site is basically a copy of the site and all you are doing is moving it to a new domain in order to leave your link or other Google penalty behind, it might back fire on you. Google's John Mueller told me yesterday in a video at 23 minutes and 15 seconds in that it is very possible that the penalty will follow the new domain even without redirects.
[edited by: Robert_Charlton at 9:23 am (utc) on Mar 1, 2014]
[edit reason] added titles, urls, quote [/edit]
John said that if you have a site with a penalty and you take the site and simply move it to a new domain name, even without using the site migration tool or setting up redirects, Google may figure out it was a site move and pass along the penalty.
[edited by: JD_Toims at 9:17 am (utc) on Mar 1, 2014]
[edited by: Robert_Charlton at 9:05 am (utc) on Mar 1, 2014]