[h1]PHP fix "Soft 404" reported by Webmaster Crawler?[/h1]
Q: How to resolve "Soft 404" reported by Google Webmaster Crawler?
A: Just replace the HTTP header "200 OK" with "404 Not Found".
Using PHP as an example.
代碼:
<?PHP
if (... Not found some ID/Topic/Articles ...)
{
// Add this line to replace "HTTP/1.0 OK" before sending anything out
header("HTTP/1.0 404 Not Found");
// ...
// ... your original code to Display ID/Topic/Articles not found ... //
// ...
}
?>
(2013-11-19 17:31)