|
25 Years of Programming
An open source source for C, C++, OWL, BASIC, MDB, XLS, DOT, and more... |
Home Projects Sitemap Search Blog Forum+Chat About Us Privacy Terms of Use Feedback FAQ Images Services Ads Donate Humor |
|
Search engine ranking:
|
How to create and install a custom Apache 404 error document, step by stepThis article has step-by-step instructions and template code for creating a custom 404 Page Not Found Apache error document for your website. It looks like a long process, but it's not. Like all my How To's, it gives detailed instructions for every step, for someone who's never done that step before. I did not find the method at cPanel > Error pages to be helpful or useful. It's better to do the creation of this document yourself. 1) Create the file for your error documentIn the public_html folder of your website, create a new file called 404.shtml. The name doesn't have to be 404, but the extension should be .shtml if you want to use any of the SSI (Apache Server Side Includes) code in the template code below. It customizes the output for your site and displays the filename that wasn't found. a) Create the file in FrontPage, Dreamweaver...You can create 404.shtml in whatever web design software you use. Put it in your top level directory so it will be published to public_html. b) Or create the file in cPanel
2) Use .htaccess to tell Apache to use your new error document instead of the default one
Troubleshooting:
Notes for customization:
Variations:If your error document doesn't use Apache SSI features, it can have a file extension other than .shtml, such as .html, .htm, .php, whatever you normally use for web pages. Also, you can put your error document in a folder other than public_html, such as public_html/errordocuments/... In that case, revise your ErrorDocument line to: ErrorDocument 404 /errordocuments/404.shtml If you do this and if you don't want Apache SSI enabled for your entire site, you can create an .htaccess file in /errordocuments and move the Options +IncludesNOEXEC line into it so that it only enables SSI for your errordocuments folder. If you are on Lunarpages shared hosting, Options +Includes appears to be the default setting for the entire site. If you don't use SSI except for error documents, and want to turn SSI off for the rest of your site, you can put the following line in public_html/.htaccess: Options -Includes Reference materials:http://httpd.apache.org/docs/1.3/mod/core.html#errordocument. |
You can freely use this code as a template for your 404.shtml file:
Red highlighted text requires easy customization for your website and file names.
The one line with Yellow highlighted text is entirely optional, and isn't required at all, even if you normally use stylesheets. It is shown here to demonstrate that you MUST use an absolute URL here even if you normally use relative ones. If you don't use stylesheets, delete the line.
Green highlighted text might need customization if you want this page to match the rest of your site. If you're not sure how to make it match the rest of your site, you can:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Language" content="en-us"> <meta http-equiv="Content-Type" content="text/html; charset=windows-1252"> <title>404 - File Not Found</title> <meta name="keywords" content="404, page, file, URL, not, found, error"> <meta name="description" content="404 - File Not Found"> <link rel="stylesheet" type="text/css" href="http://yourdomain.com/stylesheet.css"> </head> <body> <h1>Not Found</h1> <p>The requested page or file was not found:</p> <p><b><!--#echo var="HTTP_HOST" --><!--#echo var="REQUEST_URI" --></b></p> <p>This could be because of a broken or outdated hyperlink, a typing error, or the page might not exist anymore.</p> <p>Our <a title="Sitemap" href="http://yourdomain.com/sitemap.htm"><b>Sitemap</b></a> might help find the page or a page that replaced it.</p> <p> </p> <hr> <!--#echo var="SERVER_SOFTWARE" --> <!--#echo var="HTTP_HOST" -->, Port <!--#echo var="SERVER_PORT" --> </body> </html>
Addition 12/26/2007:
Although the above code shows how to use Apache SSI features, I no longer use SSI on my own pages.
Are there security weaknesses in SSI that could make the above code vulnerable to attack? I don't know. However, SSI provides such a trivial benefit to the code above that it was easier just to get rid of it than investigate fully, because...
The security weakness, if any, would be due to the fact that it takes the URI string, which could be anything and came from an outside source, and passes it through to display on the web page. Unfiltered, this could provide the opportunity for a cross-site-scripting (XSS) attack.
|
|
|
|
|
|