Home
Sign Up
Products & Services
Online Support
Submit Ticket
26 May 2013
Support Center
»
Knowledgebase
»
Error Page Codes
Error Page Codes
Solution
What are Error Codes?
These numbered error codes are how the Web server tells the user
about a status or error encountered. There are many different error
codes that a server can deliver, but these are a few of the more common codes.
401 – Unauthorized
Access to the URL resource requires user authentication which 1) has not
yet been provided or 2) which has been provided but failed authorization
tests. This is commonly known as "HTTP Basic Authentication". Unless you
have a good reason to do so, it is not recommended to redirect a 401 error.
403 – Forbidden
The request was a legal request, but the server is refusing to respond
to it. Unlike a 401 Unauthorized response, authenticating will make no
difference. This is usually due to a scripting or permission(s) issue.
404 – Not Found
This response code indicates that the client was able to communicate
with the server but either the server could not find what was requested,
or it was configured not to fulfill the request and not to reveal the
reason. Error 404 should not be confused with "server not found" or
similar errors, in which a connection to the destination server cannot
be made at all.
500 – Internal Server Error
Your Web server encountered an unexpected condition that prevented it
from fulfilling the request by the client (e.g. your Web browser) for
access to the requested URL. This is a 'catch-all' error generated by
your Web server. Basically something has gone wrong, but the server can
not be more specific about the error condition in its response to the
client.
What are custom Error Code pages?
Instead of seeing the default error message, you can create your own
error pages by adding special command lines to a .htaccess (pronounced
dot h t access) file. This file typically lives in the
/public_html/
directory in your account. Or if you have add-on domains, it lives in
/public_html/{add-on domain}/
. You may already have one in there. If that is
the case, then you can just add these lines to it. Otherwise, you can
just create a new, empty, .htaccess file to add these lines to it.
The format for an ErrorDocument statement in a .htaccess file
follows:
ErrorDocument CODE URL
The CODE refers to the error code you wish to redirect (403, 404, 500,
etc) and URL refers to the location of the file you would like displayed.
The URL can either be a URL-Path (e.g. /errors/404.html) or a full URL
e.g. (http://www.replace-with-your-domain.com/404.html). For an addon domain or
subdomain the error page path must be a full URL.
Examples
If you have created a 404.shtml and uploaded it to the root directory of
your domain replace-with-your-domain.com, page your .htaccess file would have a line like
this:
ErrorDocument 404 (http://www.replace-with-your-domain.com/404.shtml)
If you wanted to use a 404.php script file you have written it would
look like this:
ErrorDocument 404 (http://www.replace-with-your-domain.com/404.php)
If you would like people to be redirected to the homepage when they
reach a non-existent page, you could use a line like this:
ErrorDocument 404 (http://www.replace-with-your-domain.com/)
A .htaccess file controls the directory in which it sits, and all
subdirectories. However, by placing additional .htaccess files in the
subdirectories, other .htaccess files can be overruled.
Article Details
Article ID:
73
Created On:
17 Aug 2008 03:40 PM
User Comments
Add a Comment
Sharing is good. If you have a comment about this entry, please feel free to share. The comments might be reviewed by our staff, and may require approval before being posted. Questions posted will not be answered. Please submit a Ticket for support requests.
Image Verification Required
Please enter the characters that appear to the right in the space provided. This is just to verify that you are a human.
Full Name:
E-mail Address: (Optional)
Comment:
Back
Login
[Lost Password]
Email:
Password:
Remember Me:
Search
-- Entire Support Site --
Knowledgebase
Troubleshooter
Article Options
Add Comment
Print Article
PDF Version
Email Article
Add to Favorites
Home
|
Sign Up
|
Products & Services
|
Online Support
|
Submit Ticket
Copyright © 1999-2008 by Internet Planners LLC. Read our
Terms and Conditions
. All rights reserved.