Glossary · Web Development

404 Error

pronounced as digits: four-oh-four ER-urnoun

A 404 error is an HTTP status code returned when a server cannot find the page a browser requested.

Part of speech
noun
Pronunciation
pronounced as digits: four-oh-four ER-ur
Origin
The 404 status code comes from the HTTP specification of the early 1990s. It signals 'Not Found,' returned when a server cannot locate the requested page.

What is 404 Error?

A 404 error is the response a web server returns when it cannot find the page a browser requested. It is one of the most familiar messages on the internet, usually appearing as a "Page Not Found" screen. The number is an HTTP status code, and the 4 at the start places it in the family of client-side errors, meaning the request reached the server but the specific resource asked for does not exist at that address. In everyday terms, a 404 says: the site is reachable, but the page you wanted is not here.

A 404 happens whenever the address a browser requests does not match any existing page on the server. This can occur for many reasons: a page was deleted without a replacement, a URL was mistyped, a link elsewhere on the web points to an address that never existed, or a page was moved without setting up a forwarding rule. The server responds with the 404 code and typically displays an error page. Importantly, a genuine 404 tells search engines that the page is simply not found, without specifying whether it might return later, which distinguishes it from codes that signal a page was intentionally and permanently removed.

The 404 code comes from the Hypertext Transfer Protocol specification developed in the early 1990s, which assigned it the meaning "Not Found." The number itself carries no hidden story; it is just the slot in the numbering scheme reserved for that condition. Its cultural fame, however, is real. Over the years the 404 has become shorthand for anything missing online, and custom 404 pages have grown into a small art form as brands use them to soften the disappointment of a dead end with humor, helpful links, or personality.

For a business, 404 errors matter more than they might first appear. A visitor who clicks a promising link and lands on a "not found" page is likely to leave, taking a potential sale or inquiry with them. If popular pages start returning 404s after a site redesign or migration, the site can lose traffic and the ranking authority those pages had earned. Search engines that repeatedly encounter 404s where content used to live will eventually drop those pages from their index. A scattering of 404s for pages that never mattered is normal and harmless, but 404s on valuable, linked, or previously ranking pages represent lost opportunity that should be found and fixed.

The common mistakes cluster around neglect and misuse. Deleting or moving important pages without redirecting their old addresses strands visitors and search engines alike. Serving a bare, unhelpful error page with no navigation gives a frustrated visitor no way forward, when a well-designed 404 page could guide them back to useful content. Some sites misconfigure their servers so that missing pages return a success code instead of a true 404, which quietly confuses search engines into indexing empty pages. A 404 relates closely to the broader family of status codes, to the permanently removed response used when content is gone for good on purpose, and to redirects, which are the proper tool for pointing an old address to a relevant new one. Handling 404s thoughtfully keeps both visitors and search engines from hitting dead ends.

Why it matters

Widespread 404 errors frustrate visitors and signal neglect to search engines, so monitoring and fixing them protects both user experience and rankings.