Skip to main content

HTTP Pages

All pages using the non-secure HTTP scheme.

Priority: Low

Impact: Negative

What issues it may causeโ€‹

Users referred from search engines may consider the HTTP page a poor user-experience, resulting in a higher bounce/exit rate reducing conversions.

If the pages are served on both HTTP and HTTPS, then additional crawl budget may be used by search engines crawling both versions.

How do you fix itโ€‹

These URLs should be 301 redirected to HTTPS versions if they are available.

Any internal links to the HTTP URLs should be updated to use the HTTPS protocol.

If the pages are included in Sitemaps, they Sitemap links should be updated to use the HTTPS protocol.

What is the positive impactโ€‹

Users will not see the pages as insecure, resulting in an improved user-experience and a lower rate of bounce back to search results. This may positively impact the rankings and increase traffic.

Crawl budget spent on the HTTP versions of pages 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 CrawlUrls {
pageTitle
url
description
foundAtUrl
deeprank
level
https
foundInGoogleAnalytics
foundInGoogleSearchConsole
foundInBacklinks
foundInList
foundInLogSummary
foundInWebCrawl
foundInSitemap
}
}
}
}
}
}

Try in explorer