php設定404頁面的方法:先找到並開啟「apache\conf\extra\httpd-multilang-errordoc.conf」檔案;然後修改404對應檔案即可。
推薦:《PHP教學》
php建立自訂404頁面
Apache伺服器:
修改:apache\conf\extra\httpd-multilang-errordoc.conf 檔案
如下圖所示,修改404 對應檔案即可
ErrorDocument 400 /error/HTTP_BAD_REQUEST.html.var ErrorDocument 401 /error/HTTP_UNAUTHORIZED.html.var ErrorDocument 403 /error/HTTP_FORBIDDEN.html.var ErrorDocument 404 /error/404.html ErrorDocument 405 /error/HTTP_METHOD_NOT_ALLOWED.html.var ErrorDocument 408 /error/HTTP_REQUEST_TIME_OUT.html.var ErrorDocument 410 /error/HTTP_GONE.html.var ErrorDocument 411 /error/HTTP_LENGTH_REQUIRED.html.var ErrorDocument 412 /error/HTTP_PRECONDITION_FAILED.html.var ErrorDocument 413 /error/HTTP_REQUEST_ENTITY_TOO_LARGE.html.var ErrorDocument 414 /error/HTTP_REQUEST_URI_TOO_LARGE.html.var ErrorDocument 415 /error/HTTP_UNSUPPORTED_MEDIA_TYPE.html.var ErrorDocument 500 /error/HTTP_INTERNAL_SERVER_ERROR.html.var ErrorDocument 501 /error/HTTP_NOT_IMPLEMENTED.html.var ErrorDocument 502 /error/HTTP_BAD_GATEWAY.html.var ErrorDocument 503 /error/HTTP_SERVICE_UNAVAILABLE.html.var ErrorDocument 506 /error/HTTP_VARIANT_ALSO_VARIES.html.var
404檔案在下列路徑下:
apache\error\404.html
其他錯誤檔案修改方式同上。
修改完成後,重啟Apache伺服器即可! ! !
nginx伺服器:
1、建立自己的404.html頁面放在網站根目錄下。
即:網站程式碼根目錄/error/404.html
(測試時,不知道為什麼必須建立error資料夾,直接把404頁放到根目錄下失敗)
2、修改nginx.conf檔案在http定義區域加入:
fastcgi_intercept_errors on;
3、更改nginx.conf或虛擬主機的網域名稱.conf在server區域加入( bitnami.conf):
error_page 404 = /404.html;
4、重啟nginx
5、此時存取不存在url即跳到自訂404頁面
以上是php怎麼設定404頁面的詳細內容。更多資訊請關注PHP中文網其他相關文章!