3XX redirect
Linking directly to a redirect adds an unnecessary hop for users and crawlers. Point to the destination instead.
What it is
This check flags internal links whose target returns a 3xx redirect rather than the final 200 page.
Why it matters for SEO
Redirected links add latency, consume crawl budget, and slightly dilute the link signal that should reach the final page.
Example
<a href='/page'>...</a> -> 301 /new-page
How to fix
- Update the link to the final destination URL.
- Keep the redirect for external/legacy traffic.
- Repeat across navigation, sitemaps, and canonicals.
- Re-crawl to confirm links resolve directly to
200.