我尝试纠正错误“soft404”
我读了这个https://support.google.com/webmasters/answer/181708?hl=fr所以我明白了。
要使用个性化页面 404 更正此错误,我可以这样做:
<?php
try{
echo "Error, I fail to load the services I catch It ! (have imagination)";
}
catch(Exception $e){
header("HTTP/1.0 404 Not Found");
include 'page404.html';
exit;
}
?>