HTTP to HTTPS redirect
Your HTTP-to-HTTPS redirect is good for safety, but internal links should not rely on it. Link to HTTPS directly.
What it is
This check flags internal links written with http:// that get redirected to the https:// version.
Why it matters for SEO
Every redirected internal link adds latency and a tiny signal loss that is trivially avoidable.
Example
<a href='http://example.com/page'>...</a> -> 301 https://example.com/page
How to fix
- Rewrite internal links to
https://(or protocol-relative//). - Update templates, menus, and content links.
- Keep the HTTP-to-HTTPS redirect for outside traffic.
- Re-crawl to confirm internal links go straight to HTTPS.