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 AskApache:
http://wiki.apache.org/httpd/Info/Common_HTTPStatusCodes

The comment on the change is:
Added more codes

------------------------------------------------------------------------------
  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.||
+ ||200||OK||The request has succeeded.||
+ ||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.||
+ ||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.||
+ ||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||
+ ||408||Request Time-out||Server timeout waiting for the HTTP request from the 
client||
+ ||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.||
+ ||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.||
+ ||506||Variant Also Negotiates||A variant for the requested resource URL is 
itself a negotiable resource. This indicates a configuration error.||
  
  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"].

Reply via email to