Skip to main content

Non-Indexable Pages

Pages that return a 200 status but are prevented from being indexed via a noindex or canonical.

Priority: Low

Impact: Negative

What issues it may causeโ€‹

Any pages that have the potential to be drive traffic from search engine results pages can't be indexed and won't generate any organic search traffic.

How do you fix itโ€‹

The pages should be reviewed to ensure they not include any pages which have the potential to drive traffic.

If the pages have potential search value, the noindex can be removed or the canonical URL updated to match the URL of the page.

What is the positive impactโ€‹

Pages with potential search value can be indexed and potentially generate additional search traffic and conversions.

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
canonicalUrl
foundAtUrl
deeprank
level
indexable
httpStatusCode
noindex
canonicalizedPage
nofollowedPage
disallowedPage
foundInGoogleAnalytics
foundInGoogleSearchConsole
foundInBacklinks
foundInList
foundInLogSummary
foundInWebCrawl
foundInSitemap
}
}
}
}
}
}

Try in explorer