Skip to main content

Excessive Redirects In

Pages which have more than 30 redirects in from other URLs.

Priority: Medium

Impact: Negative

What issues it may causeโ€‹

It is unlikely that a large amount of redirects to the same URL are all contextually relevant to the target URL, which may result in any PageRank passed from external backlinks to be ignored.

How do you fix itโ€‹

The redirects pointing to each page should be reviewed to determine if there is a more relevant redirect target.

What is the positive impactโ€‹

The overall rankings may be improved by ensuring that all PageRank from backlinks on external sites is maintained.

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
redirectsInCount
deeprank
level
linksOutCount
linksInCount
foundInGoogleAnalytics
foundInGoogleSearchConsole
foundInBacklinks
foundInList
foundInLogSummary
foundInWebCrawl
foundInSitemap
}
}
}
}
}
}

Try in explorer