Free redirect checker — trace HTTP redirect chains and diagnose 301, 302, 307 and 308 redirects
This redirect checker makes a server-side HTTP request to the URL you enter and follows each redirect manually — one hop at a time — capturing the status code and headers at every step. Unlike browser-based tools, our server-side approach means CORS restrictions never interfere, and you see the raw redirect chain exactly as search engine crawlers do. All redirect types are supported: 301, 302, 303, 307, 308, and meta refresh redirects at the HTTP level.
Redirect chains are one of the most common and overlooked SEO problems. Every extra hop in a redirect chain adds latency (a full TCP connection and HTTP round-trip per hop), dilutes link equity passing to the final destination, and wastes crawl budget — the limited number of pages Googlebot will crawl on your site per day. A chain of three redirects can reduce the link equity passed to the destination by 15–30% compared to a direct 301.
The most common scenario is the HTTP-to-HTTPS + www-to-non-www chain: http://example.com → https://example.com → https://www.example.com. Each leg is a separate redirect that should be collapsed into one direct rule pointing from http://example.com straight to https://www.example.com.
Redirect examples — clean 301s, chains, loops, and how to fix each
A single 301 redirect from HTTP to HTTPS is the ideal configuration. The browser and search engine crawlers make two requests total (original + final) and full link equity passes to the destination. Achieving this requires consolidating all redirect rules into one server-level directive.
This 3-hop chain is the most common pattern after migrations — HTTP→HTTPS and www→non-www rules were added separately over time. The fix is a single Nginx server block that matches both HTTP variants and redirects directly to the canonical HTTPS destination in one jump.
A redirect loop means two or more rules keep bouncing the request between URLs indefinitely. The fix requires finding and removing the conflicting rules. Check Nginx/Apache config AND Cloudflare Page Rules for overlapping redirect rules that fight each other. Temporarily disable the CDN to isolate whether the loop is server-side or CDN-side.
Frequently asked questions about URL redirects and redirect chains
Need a disposable email address?Get a free instant throwaway email — no signup, no trace.
Get Free Temp Mail →