HTTP Links On HTTPS Page
What This Means
Pages served over HTTPS that contain internal links using the HTTP protocol. These links cause unnecessary redirects from HTTP to HTTPS, wasting crawl budget and adding latency. In some cases they may also trigger mixed-content security warnings in browsers.
What Triggers This Issue
This issue is triggered when a page on an HTTPS website contains internal links with URLs starting with http:// instead of https://.
How To Fix
Update all internal links to use the HTTPS protocol. Replace http:// with https:// in all internal link URLs, or use protocol-relative URLs (//example.com/page) if appropriate.
Last updated on