Issue #17 · critical
Issue 17
What is this issue?
Orphan pages are web pages that have no internal links pointing to them from other pages on your website. This issue checks whether all your indexable pages are linked from at least one other internal page, making them discoverable by search engines and users.
A passing implementation requires:
- Every important page has at least one inbound internal link
- Pages are discoverable through your site's navigation or content links
- No important pages are only reachable through sitemaps or direct URLs
- Internal linking structure provides clear paths between related content
Example: A newly published blog post that appears in your XML sitemap but isn't linked from your blog listing page, homepage, or any other page on your site.
Why does it matter?
Orphan pages are important for SEO because they:
- Reduce Crawlability: Search engines may not discover orphan pages during normal crawling
- Weaken Indexability: Pages without internal links may be crawled less frequently or not at all
- Dilute Link Equity: Orphan pages don't receive internal link authority from other pages
- Create Poor User Experience: Users cannot navigate to these pages through normal site browsing
- Waste Crawl Budget: Search engines may spend crawl budget on sitemap URLs that aren't properly integrated into the site structure
Orphan pages directly impact your SEO health score by making it harder for search engines to discover, crawl, and understand your content relationships. They may also indicate poor site architecture or content that's been forgotten.
How to fix it
-
Audit your pages: Identify which pages have no inbound internal links using crawl data or site audits.
-
Add contextual links: Include links to orphan pages from relevant content, such as:
- Blog posts related to the topic
- Category or hub pages
- Related product or service pages
- Navigation menus or footer links (for important pages)
-
Update sitemaps: Ensure orphan pages are at least included in your XML sitemap as a discovery fallback.
-
Review site architecture: Check if orphan pages indicate poor site structure that needs reorganization.
-
Link from high-authority pages: Add links from your homepage, main navigation, or top-performing pages to important orphan pages.
-
Use related content modules: Implement "Related Posts" or "Related Products" sections that automatically link to relevant pages.
-
Check after fixes: Re-crawl your site to confirm orphan pages now have inbound internal links.
Examples
Example 1: Simple Orphan Page
Problematic State (Fails): A blog post exists but has no internal links pointing to it:
- Page
/blog/new-postis in the sitemap - No other page on the site links to
/blog/new-post
Corrected State (Passes): Add internal links to the page:
- Link from the blog listing page:
<a href="/blog/new-post">New Post</a> - Link from related blog posts
- Add to main navigation or footer if important
Example 2: Orphan Page with Sitemap Only
Problematic State (Fails): A product page is only discoverable through the sitemap:
/products/special-itemis in the XML sitemap- No internal links point to this product page
Corrected State (Passes): Integrate the page into the site structure:
- Add to product category page
- Link from homepage featured products section
- Include in related products section on other product pages
Example 3: JavaScript Navigation
Problematic State (Fails): Links are generated only by JavaScript:
<div id="navigation"></div>
<script>
// Links created dynamically
</script>
PixyScan cannot detect these links.
Corrected State (Passes): Add fallback HTML links:
<noscript>
<a href="/page1">Page 1</a>
<a href="/page2">Page 2</a>
</noscript>
How PixyScan detects this
PixyScan performs orphan page detection through the following logical steps:
-
Page Discovery: PixyScan identifies all pages on your site through crawl seeds, sitemap URLs, and successfully fetched internal URLs.
-
Link Extraction: For each page, PixyScan parses the raw HTML and extracts all internal links from
<a href>attributes. -
URL Normalization: PixyScan normalizes all source and target URLs using canonical URL rules (removing fragments, resolving relative URLs, etc.).
-
Inbound Link Counting: PixyScan builds an internal link graph and counts how many unique internal pages link to each target page.
-
Orphan Identification: PixyScan flags pages as orphaned when:
- The inbound internal link count is zero (SUGGESTION)
- The page is only discoverable through sitemaps or seeds, not through internal links
-
Context Tracking: PixyScan also records whether orphan pages:
- Appear in your XML sitemap
- Were discovered through redirect chains
- May have incomplete link data due to crawl constraints
Note: PixyScan analyzes links in raw HTML only and does not execute JavaScript. Links generated only by JavaScript cannot be detected and won't clear orphan status.