Catalog/URL redirects to another URL
SEO issue

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.

5218
audited sites affected

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

  1. Audit your redirect chains and consolidate to a single hop where possible.
  2. Replace 302 redirects with 301 for permanent URL changes.
  3. Ensure the final destination returns 200 with complete content.
  4. Update your sitemap to reference the canonical destination URL, not the redirect source.

Example

Before — HTTP
GET /blog/old-post
302 Found
Location: /blog/new-post
After — HTTP
GET /blog/old-post
301 Moved Permanently
Location: /blog/new-post

A 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

Breakdowns

CMS

View breakdown →

Category

View breakdown →

Related
Catalog Redirect chain (multiple hops) Category CMS Canonical changes after JS render Most content only present after JS render Most links only present after JS render Indexability directive changes after JS render

Audit your own site — free

157 checks, internal PageRank, render-diff. No signup, results in ~30s.

Scan your site →