HTTP 404

From Wikipedia, the free encyclopedia

  (Redirected from 404 error)
Jump to: navigation, search
HTTP
Persistence · Compression · SSL
Headers
ETag · Cookie · Referrer
Status codes
301 Moved permanently
302 Found
303 See Other
403 Forbidden
404 Not Found

The 404 or Not Found error message is a HTTP standard response code indicating 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 did not reveal the reason why. 404 errors should not be confused with "server not found" or similar errors, in which a connection to the destination server could not be made at all.

Contents

[edit] Overview

When communicating via HTTP, a server is required to respond to a request, such as a web browser's request for an HTML document (web page), with a numeric response code and an email-like MIME message. In the code 404, the first "4" indicates a client error, such as a mistyped URL. The following two digits indicate the specific error encountered. HTTP's use of three-digit codes is similar to the use of such codes in earlier protocols such as FTP and NNTP.

A screenshot of a 404 error in Wikipedia with Camino.

At the HTTP level, a 404 response code is followed by a human-readable "reason phrase". The HTTP specification suggests the phrase "Not Found"[1] and many web servers by default issue an HTML page that includes both the 404 code and the "Not Found" phrase. Webservers can typically be configured to display a more natural description, a branded page or sometimes a search form, but the protocol level phrase, which is hidden from the user, is rarely customized.

Internet Explorer (before Internet Explorer 7), however, will not display custom pages unless they are larger than 512 bytes, opting to instead display a "friendly" error page. This default behaviour can be changed under Tools | Internet Options by clicking on the Advanced tab and un-checking the "Show friendly HTTP error messages" check box.

A 404 error is often returned when pages have been moved or deleted. In the first case, a better response is to return a 301 Moved Permanently response, which can be configured in most server configuration files, or through URL rewriting; in the second case, a 410 Gone should be returned. Because these two options require special server configuration, most websites do not make use of them.

404 errors should not be confused with DNS errors, which appear when the given URL refers to a webserver which does not exist. These are not 404 errors, which are always returned by a webserver.

[edit] False 404 errors

Some websites report a "not found" error by returning a standard web page with a "200 OK" response code; this is called a soft 404. Soft 404s are problematic for automated methods of discovering whether a link is broken. Soft 404s often occur when an Error Document 404 (specified in a .htaccess file) is specified as an absolute path (e.g. www.wikipedia.org/error.php) rather than a relative path (/error.php).[2]

Some proxy servers generate a 404 error when the remote host is not present, rather than returning the correct 500-range code when errors such as hostname resolution failures or refused TCP connections prevent the proxy server from satisfying the request. This can confuse programs that expect and act on specific responses, as they can no longer easily distinguish between an absent web server and a missing web page on a web server that is present.

In July 2004, the UK telecom provider BT Group deployed the Cleanfeed content blocking system, which returns a 404 error to any request for content identified as potentially illegal by the Internet Watch Foundation. Other ISPs return a HTTP 403 "forbidden" error in the same circumstances.[dubious ]

[edit] Slang usage

In 2008, a study found that "404" had become a slang synonym for "clueless" in the UK. Slang lexicographer Jonathon Green said that "404" as a slang term had been driven by the "influence of technology" and young people, but at the current time, such usage was relatively confined to London and other urban areas. The study, carried out by the telecommunications arm of the Post Office, concluded that writing abbreviations such as "404" was expedient to the sender, whilst an Australian study found that such phrases impaired the intelligibility of the message.[3]

[edit] 404 page widgets

While many websites which send additional information in an error 404 message such as a link to the homepage of a website or a search box, there are also much more advanced extensions available as widgets that endeavor to find the correct web page the user wanted.

  • Google 404 widget (found in Google Webmaster Tools) uses intelligent technology to 'guess' the correct web page a user wanted.

[edit] References

[edit] External links

Personal tools