Forum Moderators: Robert Charlton & goodroi
www.example.com/forum/viewforum.php?f=4&mark=topics&sid=8675309allyourbasecfc86b3ca2d2ee38c660a24f828
The URLs will continue to be listed for one year before being dropped out of the index. In the meantime, your custom error page will give the visitor an easy way to find the content that they require.
I guess it would depend on the type of site, server, language etc.
On Apache with .htaccess you would do this:
Redirect gone /page.html
ErrorDocument 410 /notfound.html
You can put whatever you like in the error document......."sorry, this page no longer exists, please visit our homepage at www....."
Or you could do it in php or asp or whatever, just as you would do any other re-direct.
I'm sure there are better webmasters in here than I who can help with this.
[mattcutts.com...]
I don't have enough data, yet, to say this next bit for sure -- but I do suspect that Google now looks at their historical version of a newly redirected page and "compares it" to the content of the new target page for the redirect. There certainly is something going on in some cases that slows down indexing of new 301 redirects, compared to links.
So I always recommend that a url-specific 301 be reserved for actually MOVED content. Of course, that's me. I'm very cautious most of the time, and your results may differ.
That's probably true if you're only talking about Google but I said the "correct response". Google can't seem to get either one right so it really doesn't matter.
From the W3C:
>>If the server does not know, or has no facility to determine, whether or not the condition is permanent, the status code 404 (Not Found) SHOULD be used instead. This response is cacheable unless indicated otherwise.
The 410 response is primarily intended to assist the task of web maintenance by notifying the recipient that the resource is intentionally unavailable and that the server owners desire that remote links to that resource be removed.<<
The part that caught my attention was the "response is cacheable". I play it safe and go with the 410.