Orphan Pages
Detects pages with no internal links pointing to them
Detects pages with no internal links pointing to them
| Rule ID | links/orphan-pages |
| Category | Links |
| Scope | Site-wide |
| Severity | warning |
| Weight | 5/10 |
Solution
Orphan pages have no internal links and are hard for search engines to discover. They may not get indexed or rank well. Add internal links from relevant pages. Include in navigation or sidebar. Add to sitemap. Create contextual links from related content. If intentionally orphaned (e.g., landing pages), ensure they’re accessible via sitemap.
Options
This rule supports the following configuration options:
| Option | Type | Default | Description |
|---|---|---|---|
minInboundLinks | unknown | undefined | Minimum inbound links required (pages below this are flagged) |
excludePatterns | unknown | undefined | URL patterns to exclude from orphan detection |
Configuration Example
squirrel.toml
toml[rules."links/orphan-pages"]
minInboundLinks = undefined
excludePatterns = undefinedEnable / Disable
Disable this rule
squirrel.toml
toml[rules]
disable = ["links/orphan-pages"]Disable all Links rules
squirrel.toml
toml[rules]
disable = ["links/*"]Enable only this rule
squirrel.toml
toml[rules]
enable = ["links/orphan-pages"]
disable = ["*"]