Note: Browser security (CORS) prevents following cross-origin redirects directly. This tool checks the final destination using Cloudflare DNS and shows the redirect chain as reported by the server. For a full server-side trace, use
curl -IL <url> in your terminal.
–
Redirect hops
–
Final status
Redirect Checker
Follows the full redirect chain for a URL and shows each hop: URL, status code, and response time. Useful for debugging redirect loops, verifying 301s, and auditing redirect chains.
HTTP redirect status codes
| Code | Type | SEO impact |
|---|---|---|
| 301 | Moved Permanently | Passes ~90–99% of link equity |
| 302 | Found (Temporary) | Does not transfer link equity |
| 307 | Temporary Redirect | Method-preserving; no link equity |
| 308 | Permanent Redirect | Method-preserving permanent; passes equity |
| Meta refresh | HTML-level redirect | Weaker SEO signal than HTTP 301 |
Common redirect chain issues
- Redirect loop – A redirects to B which redirects back to A; browsers show an error
- Too many hops – chains longer than 3–4 redirects slow down page load and dilute link equity
- HTTP to HTTPS then www – two hops; consolidate to one redirect directly to the canonical URL
- 302 used instead of 301 – temporary redirect loses link equity for permanent moves