You are viewing a plain text version of this content. The canonical link for it is here.
Posted to wiki-changes@httpd.apache.org by Apache Wiki <wi...@apache.org> on 2007/05/25 17:08:19 UTC

[Httpd Wiki] Update of "Info/Common HTTPStatusCodes" by slive

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Httpd Wiki" for change notification.

The following page has been changed by slive:
http://wiki.apache.org/httpd/Info/Common_HTTPStatusCodes

------------------------------------------------------------------------------
- Here is a list of all 57 HTTP Status Codes recognized by the Apache Web Server.  For full details, see the HTTP Specification [http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html RFC2616 Section 10]. 
+ Here is a list of the most common http status codes.  For full details, see the HTTP Specification [http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html RFC2616 Section 10].
  
  ||'''Code'''||'''Message'''||'''Description'''||
+ ||200||OK||Content delivered normally.||
- ||100||Continue|| ||
- ||101||Switching Protocols|| ||
- ||102||Processing|| ||
- ||200||OK||The request has succeeded.||
- ||201||Created|| ||
- ||202||Accepted|| ||
- ||203||Non-Authoritative Information|| ||
- ||204||No Content|| ||
- ||205||Reset Content|| ||
- ||206||Partial Content|| ||
- ||207||Multi-Status|| ||
- ||300||Multiple Choices|| ||
- ||301||Moved Permanently||The document has moved URL here||
- ||302||Found||The document has moved URL here||
- ||303||See Other||The answer to your request is located URL here||
- ||304||Not Modified||A cached copy will be used||
+ ||304||Not Modified||A cached copy will be used.||
+ ||401||Unauthorized||User credentials required (Authentication)||
+ ||403||Forbidden||Resource can't be viewed. (e.g. no index file and directory indexing is turned off or a Deny rule is in place)||
+ ||404||Not Found||Resource is missing!||
+ ||500||Internal Server Error||The server did something wrong or the browser made a invalid request.||
- ||305||Use Proxy|| ||
- ||306||unused|| ||
- ||307||Temporary Redirect|| ||
- ||400||Bad Request||Your browser sent a request that this server could not understand||
- ||401||Authorization Required||This server could not verify that you are authorized to access the document requested. Either you supplied the wrong credentials (e.g., bad password), or your browser doesn't understand how to supply the credentials required.||
- ||402||Payment Required|| ||
- ||403||Forbidden||You don't have permission to access on this server||
- ||404||Not Found||The requested URL was not found on this server||
- ||405||Method Not Allowed||The requested method GET is not allowed for the URL||
- ||406||Not Acceptable|| ||
- ||407||Proxy Authentication Required|| ||
- ||408||Request Time-out||Server timeout waiting for the HTTP request from the client||
- ||409||Conflict|| ||
- ||410||Gone||The requested resource is no longer available on this server and there is no forwarding address. Please remove all references to this resource||
- ||411||Length Required||A request of the requested method GET requires a valid Content-length||
- ||412||Precondition Failed||The precondition on the request for the URL evaluated to false||
- ||413||Request Entity Too Large||The requested resource does not allow request data with GET requests, or the amount of data provided in the request exceeds the capacity limit||
- ||414||Request-URI Too Large||The requested URL's length exceeds the capacity limit for this server||
- ||415||Unsupported Media Type||The supplied request data is not in a format acceptable for processing by this resource.||
- ||416||Requested Range Not Satisfiable|| ||
- ||417||Expectation Failed|| ||
- ||418||unused|| ||
- ||419||unused|| ||
- ||420||unused|| ||
- ||421||unused|| ||
- ||422||Unprocessable Entity|| ||
- ||423||Locked|| ||
- ||424||Failed Dependency|| ||
- ||425||No code|| ||
- ||426||Upgrade Required|| ||
- ||500||Internal Server Error||The server encountered an internal error or misconfiguration and was unable to complete your request||
- ||501||Method Not Implemented||GET to URL not supported||
- ||502||Bad Gateway||The proxy server received an invalid response from an upstream server||
- ||503||Service Temporarily Unavailable||The server is temporarily unable to service your request due to maintenance downtime or capacity problems. Please try again later.||
- ||504||Gateway Time-out|| ||
- ||505||HTTP Version Not Supported|| ||
- ||506||Variant Also Negotiates||A variant for the requested resource URL is itself a negotiable resource. This indicates a configuration error.||
- ||507||Insufficient Storage|| ||
- ||508||unused|| ||
- ||509||unused|| ||
- ||510||Not Extended|| ||
  
  Remember that, in the case of an error status code (4xx or 5xx), there will almost always be more details available in the Apache error log.
  Don't know the location of your error log? Shame on you! But have a look here: ["Info/DistrosDefaultLayout"].