Forum Moderators: Robert Charlton & goodroi
When the page is archived on our site (should correspond to the meta), then I'm going to put a 410 on the page (I can't find a huge amount of information on implementing 410's but Google seems to suggest it for permanently removed content)
The link juice is something that could be annoying. If I have a couple of links on the 410 would they count.. I think not!
I don't understand what's meant using a 410 for an archive. It doesn't make sense to me. When you 410 a page, it's gone.
The "410 Gone" is a status code delivered in the HTTP header, and has no relationship to what is shown to humans or bots on the HTML page. You can deliver any 2xx, 4xx, or 5xx status code in the HTTP header before the HTML page is served.
The end result looks exactly the same to the browser or bot that made the initial request.
The 410 status code tells search engines to de-index the page.... You can continue showing content on that page to the visitors that continue to arrive.
Instead I got handed a server-default 410 that was even scarier than the server-default 404.
RewriteRule ^thatpage\.html$ - [G] in .htaccess then yes, you are forcing the server default 410 ErrorDocument to be served for that request. Processing never reaches the PHP script running the site. if ($pagestatus = 'expired') {HEADER ('Status: 410 Gone';)} in th PHP code at some point before the HTML DOCTYPE is emitted, then you have complete control over what is served and what status code is served with it. Status: 410 Gone" HTTP status message in the HTTP Headers preceding the sending of any HTML page.
...then you have complete control over what is served and what status code is served with it.
10.4.11 410 Gone
The requested resource is no longer available at the server and no forwarding address is known....
...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. Such an event is common for limited-time, promotional services and for resources belonging to individuals no longer working at the server's site. It is not necessary to mark all permanently unavailable resources as "gone" or to keep the mark for any length of time -- that is left to the discretion of the server owner.
It's hard to be specific about our situation without just saying our domain, but the content we are 410'ing is generated by clients, who want it removed after a certain date anyway.