Skip to main content

Links from HTTPS to HTTP

Priority: Low

Impact: Negative

What issues it may causeโ€‹

If the website is served on a single preferred protocol, then search engines will crawl URLs on the alternative protocol. Even if they redirect back to the preferred protocol, this will result in some wasted crawl budget.

How do you fix itโ€‹

Update the links to use a consistent protocol, preferably HTTPS.

What is the positive impactโ€‹

Crawl budget spent on the non-preferred protocol may be reduced, allowing crawl budget to be used on more important pages, or save on server costs.

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 CrawlUniqueLinks {
anchorText
urlToTitle
urlTo
primaryUrlFromTitle
primaryUrlFrom
instanceCount
primaryUrlFromDeeprank
urlToDeeprank
primaryUrlFromHttps
urlToHttps
nofollow
isRedirect
}
}
}
}
}
}

Try in explorer