Skip to main content

Overview

Redirects are essential for managing URL changes, but poorly implemented redirects can hurt performance and SEO. SEO Crawler analyzes your redirect chains to identify loops, excessive hops, and suboptimal configurations.
Available on: All plans (Free, Solo, Pro, Agency)

What We Detect

Redirect Chains

A redirect chain occurs when a URL redirects to another URL, which then redirects again:
A → B → C → D (3-hop chain)
Each redirect hop adds latency and dilutes SEO value. Google recommends a maximum of 2 redirects in any chain.

Redirect Loops

A redirect loop occurs when redirects create a circular reference:
A → B → C → A (infinite loop)
Loops prevent pages from loading and cause browsers to display error messages.

Redirect Types

CodeTypeSEO Impact
301Permanent RedirectPasses full link equity (use for permanent moves)
302Temporary RedirectMay not pass link equity (use for temporary changes)
303See OtherUsed after POST requests
307Temporary RedirectStrict HTTP method preservation
308Permanent RedirectStrict HTTP method preservation
Meta RefreshHTML-based redirectSlow, not recommended for SEO
JavaScriptClient-side redirectNot followed by all crawlers

Why Redirect Issues Matter

Performance Impact

Each redirect adds:
  • DNS Lookup: ~20-120ms
  • TCP Connection: ~20-60ms
  • SSL Handshake: ~30-100ms (HTTPS)
  • Server Response: ~50-200ms
A 3-hop redirect chain can add 300-500ms+ to page load time.

SEO Impact

  • PageRank Dilution: Each redirect loses ~15% of link equity
  • Crawl Budget Waste: Search engines follow redirects, using crawl resources
  • Indexing Confusion: Too many redirects can prevent proper indexing
A page behind a 5-hop redirect chain may retain less than 50% of its original link equity.

Reading Redirect Analysis

After a crawl, the Redirects section shows:

Chain Summary

MetricDescription
Total RedirectsNumber of URLs that redirect
Avg Chain LengthMean number of hops
Loops DetectedCritical: redirect loops found
Long ChainsChains with 3+ hops

Detailed Chain View

Click any redirect to see the full chain:
https://example.com/old-page
  ↓ 301
https://example.com/newer-page
  ↓ 301
https://example.com/newest-page
  ↓ 301
https://example.com/final-page ✓

Chain Length: 3 hops
Total Time: 847ms
Recommendation: Update original link to point directly to final destination

Common Issues and Fixes

Long Redirect Chains

Multiple URL changes over time have created accumulated redirects:
/product → /products/item → /shop/products/item → /store/item

Redirect Loops

Conflicting redirect rules create infinite loops:
/page-a → /page-b → /page-a (loop!)

HTTP to HTTPS + www Redirects

Separate redirects for protocol and subdomain create unnecessary hops:
http://example.com → https://example.com → https://www.example.com

302 vs 301 Misuse

Using 302 (temporary) for permanent URL changes:
302 Redirect: /old-url → /new-url
This tells search engines to keep indexing the old URL.

Best Practices

Limit to 1-2 Hops

Always redirect directly to the final destination. Never chain redirects.

Use 301 for Permanent

Only use 302/307 when the redirect is genuinely temporary.

Update Internal Links

After setting up a redirect, update internal links to use the new URL directly.

Monitor Regularly

Redirect issues accumulate over time. Regular crawls catch problems early.

Redirect Audit Workflow

1

Run a Full Crawl

Enable redirect analysis to capture all redirect chains.
2

Fix Critical Issues First

Address redirect loops immediately—these completely break page access.
3

Flatten Long Chains

Update redirects to point directly to final destinations.
4

Update Internal Links

Change internal links to point to final URLs, eliminating redirect need.
5

Verify Fixes

Re-crawl to confirm all redirect issues are resolved.

Filtering Options

FilterDescription
Chain LengthShow chains with N+ hops
Has LoopOnly show redirect loops
Redirect TypeFilter by 301, 302, etc.
Source URLFilter by URL pattern

Export Options

Export redirect data for implementation:
  • CSV: Full redirect inventory for server configuration
  • PDF Report: Visual chain diagrams for stakeholders
  • Implementation Plan: Suggested fixes with code snippets