I am using a WAMP server and I need to change the \"404 not found page\" style using CSS. How can I do it?
In your httpd.conf
file, there will be an ErrorDocument
section:
#
# 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
#
After that, add this code:
ErrorDocument 404 /error.html
That will set the error page to a file called error.html
, and it is better than using .htaccess
files.