Saturday, 23 April 2016

What are common HTTP status code ?


HTTP Status code definitions

400 Bad Request
  • based on client side error

403 Forbidden
  • Accessing the page or resource you were trying to reach is absolutely forbidden for some reason.
  • ResolutionCheck for URL errors and make sure the actual web page is specified.Make sure the page you're trying to reach is correct.
 
404 Not Found
  • The page you are trying to reach could not be found on the server.
  • 404 is a client side error.
  • ResolutionCheck the URI you have typed in the browser.Move up one directory level in the URIeg. www.xyz.com/d/f/.ctd.html to www.xyz.com/d/f

408 Request Timeout
  • Request you sent to the website server (e.g. a request to load a web page) took longer than the website's server was prepared to wait.
  • Resolution Many times a slow connection causes the 408 Request Timeout error. this is often only temporary.Trying the page again will often be successful.
    As more users connect to the website means huge increase in traffic by the server.
    After some time when users left the access, this problem can be resolved.

No comments:

Post a Comment

Note: only a member of this blog may post a comment.