I am using a WAMP server and I need to change the "404 not found page" style using CSS. How can I do it?
相关问题
- Views base64 encoded blob in HTML with PHP
- Laravel Option Select - Default Issue
- PHP Recursively File Folder Scan Sorted by Modific
- Can php detect if javascript is on or not?
- Is there a way to play audio on a mobile browser w
In your
httpd.conf
file, there will be anErrorDocument
section:After that, add this code:
That will set the error page to a file called
error.html
, and it is better than using.htaccess
files.In .htaccess add
This is a core feature in Apache, and you can select a few methods of changing the 404 message.
To create your own custom page with HTML/CSS, this is one option you can put in your
.htaccess
file:You can redirect 404 error pages using
.htaccess
file to your custom pages.Design your custom 404 page with using HTML/CSS. Once you have your 404 page setup, all you need to do is send visitors to incorrect url’s to this page. To do this just add the following line to your
.htaccess
file:You can place the 404 error template anywhere you want. For example you could place all error messages in a folder called
errormessages
See this article, How to redirect your 404 error to a custom page
if there are many sites hosted on your server and you want a different message for each site, adding
ErrorDocument 404
to .htaccess file is the way to go.If you want the same error message to occur across all the websites, then setting ErrorDocument in httpd.conf is the way to go.