This option will reset the home page of this site. Restoring any closed widgets or categories.

Reset

Custom Error Pages Using .htaccess

A Simple Method To Create Custom Error Pages

The first use of the .htaccess file which I will cover is custom error pages. These will allow you to have your own, personal error pages (for example when a file is not found) instead of using your host’s error pages or having no page. This will make your site seem much more professional in the unlikely event of an error. It will also allow you to create scripts to notify you if there is an error.
You can use custom error pages for any error as long as you know its number (like 404 for page not found) by adding the following to your .htaccess file:

ErrorDocument errornumber <FILE NAME>

For example if I had the file notfound.htm in the root direct
ory of my site and I wanted to use it for a 404 error I would use:

ErrorDocument 404 /notfound.htm

If the file is not in the root directory of your site, you just need to put the path to it:

ErrorDocument 500 /errorpages/500.htm

These are some of the most common errors:

401 - Authorization Required
400 - Bad request
403 - Forbidden
500 - Internal Server Error
404 - File Not Found

Then, all you need to do is to create a file to display when the error happens and upload it and the .htaccess file.

VN:F [1.5.7_846]
Rating: 0.0/10 (0 votes cast)
VN:F [1.5.7_846]
Rating: 0 (from 0 votes)

Related posts:

  1. How To Avoid 404 Error Pages Easily and Reliably
  2. Fix the problem in getting 500 Internal Server Error In Localhost Due To .htaccess
  3. Fix 500 Internal Server Error In Wordpress
  4. “Header already sent” in php error and other use of Header function in PHP
  5. Speed up wordpress using .htaccess part 1
  6. Speed up wordpress using .htaccess part 2
  7. Url rewriting examples using .htaccess

Leave a Reply

Comments (required)

Spam Protected