Skip to main content

All Orphaned Pages

Priority: Low

Impact: Negative

What issues it may causeโ€‹

The pages may be discovered by search engines in non-anchor link types such as canonical tags, but may rank less effectively if they do not have any anchor links from other pages. They are less likely to be selected as a canonical URL, and more likely to be deduplicated where the page is in a set of duplicates.

How do you fix itโ€‹

The pages should be reviewed to determine if they have value for search engines, and internal links to the orphaned pages should be added on other pages.

The valuable pages are likely to be linked, so the orphan pages may also be URLs which are not expected to be linked with anchors, but were found through a link such as a malformed canonical tag URL or hreflang.

What is the positive impactโ€‹

The pages are more likely to be crawled and indexed, and selected as a canonical URL.

How to fetch the data for this report templateโ€‹

You will need to run a crawl for report template to generate report. When report has been generated and you have crawl id you can fetch data for the report using the following query:

query GetReportForCrawl($crawlId: ObjectID!, $reportTemplateCode: String!) {
getCrawl(id: $crawlId) {
reportsByCode(
input: {
reportTypeCodes: Basic
reportTemplateCodes: [$reportTemplateCode]
}
) {
rows {
nodes {
... on CrawlUrls {
pageTitle
url
description
foundAtUrl
deeprank
level
linksInCount
foundInWebCrawl
foundInGoogleAnalytics
foundInGoogleSearchConsole
foundInBacklinks
foundInList
foundInLogSummary
foundInWebCrawl
foundInSitemap
}
}
}
}
}
}

Try in explorer