Broken pages occur when URLs return 4xx HTTP status codes (such as 404 Not Found or 410 Gone). These errors indicate that the requested content is unavailable,
By Seoxpert Editorial · Published · Updated
4xx errors prevent users and search engines from accessing content, which can result in lost traffic, wasted crawl budget, and loss of link equity from inbound links. Persistent broken pages can negatively impact site rankings and user trust.
Broken pages can cause users to abandon your site, reduce the effectiveness of internal linking, and signal to search engines that your site is poorly maintained. Over time, this can lead to lower search visibility and reduced organic traffic.
Broken pages are typically detected using site crawlers, Google Search Console, server logs, or third-party SEO tools that report 4xx errors encountered during crawling.
Apache .htaccess 301 Redirect
Redirect 301 /old-page.html /new-page.htmlNginx 301 Redirect
location = /old-page.html {
return 301 /new-page.html;
}Fixing Internal Links in HTML
<!-- Before: broken link -->
<a href="/old-page.html">Product Info</a>
<!-- After: updated link -->
<a href="/new-page.html">Product Info</a>A 4xx error is an HTTP status code indicating a client-side error, such as 404 Not Found or 410 Gone, meaning the requested page cannot be accessed.
Broken pages can waste crawl budget, cause loss of link equity, and create a poor user experience, all of which can negatively impact SEO rankings.
Use 301 (permanent) redirects for broken pages to signal to search engines that the content has permanently moved. 302 (temporary) redirects are not appropriate for permanently removed content.
You can find broken pages using tools like Google Search Console, site crawlers (e.g., Screaming Frog), or by checking server logs for 4xx status codes.
If no relevant replacement exists, serve a custom 404 page or a 410 Gone status, and ensure all internal links to the deleted page are removed or updated.
It's recommended to audit your site for broken pages regularly, especially after site updates, migrations, or content changes.
Redirect chains occur when a URL redirects through one or more intermediate URLs before reaching its final destination. This process increases page load times a
Pages link to #fragment targets that do not exist on the destination page, breaking table-of-contents and deep-link navigation.
Run a scan to see if Broken Pages (4xx Errors) affects your pages.
Scan my website →