The Importance of the Issue
When your website applies the protected HTTPS protocol, all connections are established through a secure protocol. When linking to your site page using HTTP, a browser notifies a user about page insecurity, causing the user to get a negative experience.
If a site has automatic forwarding from HTTP to HTTPS set, it might lead to inner 301 redirections waisting the crawling budget and negatively affecting the site. You should use the highest possible number of “direct” links without redirections within the site.
How to Check the Issue
Using any browser is enough to check the issue. Open the source code of the flawed page. To do this, click the right mouse button at any spot of the page and choose “browse the code” option, or apply an online tool https://codebeautify.org/source-code-viewer
Find a tag <a href=”http://site.com”>. The presence of the http protocol in a href attribute specifies that there is an issue.
If there is an issue notification, and your site applies a relative URL, find a <base> tag in the website’s code and check its value in the href attribute. The presence of the http protocol in a href attribute specifies that there is an issue. Here is an example:
Here is a screenshot instruction on how to check this issue with Sitechecker. It focuses on the “Security” category of site issues, particularly identifying the problem where an “HTTPS page has internal links to HTTP page.”
By simply clicking on “View issue,” the tool provides a straightforward list of all the HTTPS pages on your site that contain internal links leading to HTTP pages. Additionally. you will have capability to view all internal links on every page from the list.
Upgrade to Full HTTPS Security!
Discover all HTTP links on your HTTPS pages and fortify your site's defenses with Sitechecker.
How to Fix This Issue
Change the protocol from HTTP to HTTPS in the href attribute of <a> tag. If necessary, change the href attribute value in a <base> tag. Attribute value change within the <base> tag is usually made globally in the website template.