404 error

Definition
A 404 Error is an HTTP status code that indicates the requested webpage could not be found on the server. It typically occurs when a user clicks a broken link, enters an incorrect URL, or when a page has been removed without a proper redirect. Instead of showing the intended content, the browser displays a “Page Not Found” message.
404 errors do not mean the server is down but simply that the specific resource is unavailable at the requested address. While common on the internet, frequent 404 errors can frustrate users, damage brand perception, and negatively impact search engine rankings.
Advanced
Technically, a 404 error is part of the 4xx class of client-side HTTP status codes. It is returned when the server is reachable but cannot locate the requested resource. Unlike a 410 status code (“Gone”), which indicates a resource has been permanently removed, a 404 leaves the removal status undefined.
Advanced website management practices involve creating custom 404 error pages with helpful navigation, search functions, and branding to reduce bounce rates. Redirect strategies, such as 301 redirects, are often applied to guide users from outdated URLs to relevant pages. Regular site audits help identify and fix broken links that trigger 404 errors.
Why it matters
Use cases
Metrics
Issues
Example
An e-commerce store discovered thousands of 404 errors after a site redesign. By implementing 301 redirects from old product URLs to new ones and creating a custom 404 page with navigation links, the company restored traffic flow, reduced bounce rates, and preserved SEO rankings.