方法一
代碼如下 復制代碼@header("http/1.1 404 not found");
@header("status: 404 not found");
echo 'echo 404';
exit();
加載一個404錯誤頁面
代碼如下 復制代碼
@header("http/1.1 404 not found");
@header("status: 404 not found");
include("../../404.htm");
exit();
也可以在站點中加入.htaccess 代碼如下
errordocument 404 /404.html
如果有apahce配置權限,我們可以修改 httpd.conf
找到:
代碼如下 復制代碼 #ErrorDocument 500 "The server made a boo boo."
修改為