Skip to main content

Non-Indexable Pages with Visits

Non-indexable pages which have received organic search traffic

Priority: Low

Impact: Negative

What issues it may causeโ€‹

If a page with a noindex has generated visits, it could be that a nonidex has been added within the report period.

If a canonicalized URL is getting visits then it's likely that search engines are ignoring the suggested canonical.

How do you fix itโ€‹

The pages with a noindex should be investigated to make sure that the noindex directive is appropriate for those pages.

The canonicalised pages should be reviewed for potential canonical errors such as the content not being equivalent.

What is the positive impactโ€‹

Page with potential search value can stay indexed and retain their organic 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
foundAtUrl
gaVisits
indexable
httpStatusCode
noindex
canonicalizedPage
nofollowedPage
disallowedPage
foundInGoogleAnalytics
foundInGoogleSearchConsole
foundInBacklinks
foundInList
foundInLogSummary
foundInWebCrawl
foundInSitemap
}
}
}
}
}
}

Try in explorer