How to style 404 page in WAMP server

前端 未结 5 1582
夕颜
夕颜 2021-01-05 23:05

I am using a WAMP server and I need to change the \"404 not found page\" style using CSS. How can I do it?

\"ent

5条回答
  •  粉色の甜心
    2021-01-05 23:19

    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.

提交回复
热议问题