.htaccess設置自定義出錯頁面

404錯誤能夠這麼寫php

ErrorDocument code error.php

若是是404錯誤,跳到文件error.phphtml

其餘經常使用錯誤頁面寫法(其中404錯誤有2種寫法,上面一種,下面是通用錯誤定義)測試

ErrorDocument 404 /error/404.php
ErrorDocument 500 /error/500.php
ErrorDocument 400 /error/400.php
ErrorDocument 401 /error/401.php
ErrorDocument 403 /error/403.php
ErrorDocument 503 /error/503.php
  • 若是是404錯誤,則跳到 error目錄下的404.php文件
  • 若是是500錯誤,則跳到 error目錄下的500.php文件
  • 以此類推

注意:我在本地Apache環境中測試,文件夾爲error時,不能讀取錯誤文件,其餘文件名正常。多是跟我環境默認的設置衝突了,你們碰到這種狀況改下文件名便可。code

轉載:http://www.sjyhome.com/htaccess/custom-error-pages.htmlhtm

相關文章
相關標籤/搜索