php – 如何在WAMP服务器中设置404页面样式

前端之家收集整理的这篇文章主要介绍了php – 如何在WAMP服务器中设置404页面样式前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我正在使用WAMP服务器,我需要使用CSS更改“404 not found page”样式.我该怎么做?

最佳答案
在你的httpd.conf文件中,会有一个ErrorDocument部分:

#
# 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://www.example.com/subscription_info.html
#

之后,添加以下代码

ErrorDocument 404 /error.html

这会将错误页面设置为名为error.html的文件,并且比使用.htaccess文件更好.

猜你在找的HTML相关文章