如何给 Apache 自定义404错误页面
作者:水寒 日期:2008-01-31
DocumentRoot /webroot/
ServerName localhost
ErrorDocument 404 http://jiansuo.com/404_2.html
DocumentRoot /webroot/
ServerName malu
ErrorDocument 404 http://21pt.com/404_1.html
假如 http://localhost 和 http://malu 都指向同一目录,
如果 /webroot/xxxx.htm 文件不存在
那么访问 http://localhost/mypage.htm 则转向http://jiansuo.com/404_2.html
那么访问 http://tonylu/mypage.htm 则转向http://21pt.com/404_1.html
发现Apache是具有自定义错误页面的功能。
#
# Customizable error responses come in three flavors:
# 1) plain text 2) local redirects 3) external redirects
#
# Some examples:
#ErrorDocument 500 "The server made a boo boo."
#ErrorDocument 404 /missing.html
#ErrorDocument 404 "/cgi-bin/missing_handler.pl"
#ErrorDocument 402 http://localhost/subscription_info.html
#