人氣點閱:2165 |
發表人 |
PHP fix "Soft 404" reported by Webmaster Crawler? 2013-11-19 17:31 |
/ / /
|
|
PHP fix "Soft 404" reported by Webmaster Crawler?
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 ... //
// ...
}
?>
________________
美術插畫設計案子報價系統 v0.1 Beta
爪哇禾雀
|
|
Type
繪圖畫廊 設計藝廊 攝影相簿 留言板 最愛收藏 分類標籤
暱稱: Type 註冊: 2002-11-30 發表: 11171 來自: vovo2000.com
V幣: 901757
|
|
|
|
|