This URL redirects: is that a problem for SEO?
See where a URL redirects and whether it's a 301 or 302. Learn when redirects are fine and when they signal a link or canonical issue.
What it means
A URL that returns a redirect (3xx status) instead of a 200 response. Googlebot follows the redirect and indexes the final destination, but the original URL becomes a redirect chain rather than a standalone page.
Why it matters
Redirects consume crawl budget without delivering unique content. They dilute link equity across the chain and can cause soft-404-like behavior when the intermediate page has minimal content. For AI agents parsing structured data, each hop adds latency and reduces the chance of capturing the final page's metadata.
How to fix it
- Audit your redirect chains and consolidate to a single hop where possible.
- Replace 302 redirects with 301 for permanent URL changes.
- Ensure the final destination returns 200 with complete content.
- Update your sitemap to reference the canonical destination URL, not the redirect source.
Example
GET /blog/old-post
302 Found
Location: /blog/new-postGET /blog/old-post
301 Moved Permanently
Location: /blog/new-postA single redirect is usually fine. Use 301 (permanent) for moved content so link equity and indexing consolidate; reserve 302 for genuinely temporary moves.
When it's not a problem
This is fine when the redirect is intentional and the destination page is the intended target — for example, a 301 from http to https, or a short-lived A/B test redirect. Google treats these as normal behavior, not errors.
How Crawlinx detects it
We record the full redirect chain each request follows. Exactly one hop where the final URL differs from the requested URL is reported here as a single redirect (multi-hop chains are reported separately).
How common is it?
5218 audited sites in our corpus currently show this issue. The breakdowns below show which platforms, gatekeepers, verticals and countries are most exposed.
FAQ
- Is a 301 redirect bad for SEO?
- No. A single 301 is the correct way to move a page and passes ranking signals to the target. The concern is chains and redirecting URLs you still link to internally.
- 301 vs 302 — which should I use?
- Use 301 for permanent moves (Google consolidates the old URL into the new one). Use 302 only when the original URL will return, since 302 keeps the old URL indexed.
Related guides
Audit your own site — free
157 checks, internal PageRank, render-diff. No signup, results in ~30s.