|
We're sorry, but the page you requested does not exist.
What does 404 mean?
404 is an HTTP status code. Every time you visit a web page, your computer (the
'client') is requesting data from a server using HTTP, or Hypertext Transfer
Protocol. Before the web page is even displayed in your browser, the web server
has sent the HTTP header, which contains the status code. Not surprisingly, your
browser has sent the server its own headers, which contain a lot more
information about you than you think!
For a normal web page, the status is 200 OK. You don't see this because the
server proceeds to send you the contents of the page. It's only when you
encounter an error that you see the actual status code, such as 404 Not Found.
The first 4 indicates a client error. The server is saying that
you've done something wrong, such as misspell the URL or request a page which is
no longer there. Conversely, a 5xx error indicates a server-side problem. It
also indicates an error which may be transient; if you try it again, it may
work.
The middle 0 refers to a general syntax error. This could
indicate a spelling mistake.
The last 4 just indicates the specific error in the group of 40x, which also
includes 400: Bad Request, 401: Unauthorized, etc.
|