Redirect Checker

Trace HTTP redirect chains, inspect each hop's status code and headers, and verify your redirects work correctly

Redirect Status Codes and Their SEO Impact

What each 3xx means (RFC 9110)

  • 301 (permanent): search engines transfer ranking signals to the new URL. Use for domain moves and URL restructures.
  • 302/307 (temporary): the original URL stays indexed. Use only for genuinely temporary moves or A/B tests β€” a 302 on a permanent move delays signal transfer.
  • 308: like 301 but preserves the HTTP method (POST stays POST).

Problems worth checking

  • Chains: Aβ†’Bβ†’C slows pages and dilutes signals. Point A directly to C.
  • Loops: Aβ†’Bβ†’A produces ERR_TOO_MANY_REDIRECTS.
  • Protocol/host variants: verify all four combinations (http/https Γ— www/non-www) 301 to a single canonical destination β€” the most common baseline audit.

Frequently Asked Questions

Related Tools

Sources & References

Content last reviewed: 2026-08-22