httpd - 配置错误页面

Posted duchaoqun

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了httpd - 配置错误页面相关的知识,希望对你有一定的参考价值。

Summary

  • 在访问异常的时候展示错误页面。

Demo1

  • 内容根据需求写,如果404.html的小于512字节的话,那么IE会认为这个错误页面不够“友好”,会忽视掉的!
  • 必须放置在网站根目录(www/)中
# 在httpd.conf中设置对目录开启。
AllowOverride All

# 然后在目录里放一个.htaccess(.htaccess),添加:
errorDocument 404 /404.php

Demo2

# 修改 httpd.conf,找到:
#ErrorDocument 500 "The server made a boo boo."
#ErrorDocument 404 /missing.html
#ErrorDocument 404 "/cgi-bin/missing_handler.pl"
#ErrorDocument 402 http://www.example.com/subscription_info.html

# 去掉注释,添加内容
ErrorDocument 404 /error.php
  • 注意不要将404错误转向到网站主页。
  • 如果一个页面的内容小于512b,IE会认为该不会成功返回该错误页面。
  • 切记不要使用绝对URL。常情况返回的是404状态码,而使用URL形式则返回的是200状态码。

以上是关于httpd - 配置错误页面的主要内容,如果未能解决你的问题,请参考以下文章

httpd服务之虚拟主机访问控制https配置

apache 404403错误页面跳转

CentOS7配置httpd虚拟主机

PHP页面静态化

httpd配置ResponseHeader

httpd Server not started: (13)Permission denied: make_sock: could not bind to address [::]:8888(代码片段