404错误可以这么写

ErrorDocument code error.php

如果是404错误,跳到文件error.php

其他常用错误页面写法(其中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时,不能读取错误文件,其他文件名正常。可能是跟我环境默认的设置冲突了,大家碰到这种情况改下文件名即可。

转载:http://www.sjyhome.com/htaccess/custom-error-pages.html

posted on 2015-04-20 22:52  撒得一地  阅读(170)  评论(0编辑  收藏  举报