Redirect Checker
Trace the complete redirect chain for any URL. See every 301, 302, and 307 hop, their status codes, and the final destination in a clear step-by-step timeline.
URL Redirect Checker
Trace the full redirect chain of any URL — see every 301, 302, and 307 hop before the final destination.
Enter a URL and click "Trace Redirects" to see its full redirect chain.
Try an HTTP URL to see it redirect to HTTPS.
Every time a browser follows a link to your website, it may silently travel through one or more redirect hops before reaching the final page. A single page can have a chain of five redirects, each one adding latency and losing a fraction of its SEO authority. Understanding and auditing your redirect chains is a non-negotiable part of technical SEO and web performance.
What Is a URL Redirect?
A redirect is an HTTP response that tells the browser: this resource has moved, go to this other URL instead. The server communicates this with a 3xx status code and a Location header pointing to the new address. The most common types are:
- 301 Moved Permanently — The resource has moved for good. Search engines transfer most of the link equity to the new URL.
- 302 Found — A temporary redirect. Search engines may keep the original URL indexed.
- 307 Temporary Redirect — Similar to 302, but strictly preserves the HTTP method (e.g., POST stays as POST).
- 308 Permanent Redirect — Like 301, but also preserves the HTTP method.
Why Redirect Chains Are Bad for SEO
A redirect chain occurs when a URL redirects to another URL, which redirects to yet another URL. For example: http://site.com → https://site.com → https://www.site.com → https://www.site.com/. This three-hop chain is problematic for several reasons:
1. PageRank (Link Equity) Loss
Each redirect hop slightly dilutes the link equity passed from the original URL. While Google has stated that a single 301 passes nearly full equity, long chains can cause measurable dilution.
2. Crawl Budget Waste
Googlebot has a finite crawl budget for each site. Every redirect hop consumes part of that budget. On large sites with many redirect chains, Googlebot may fail to crawl all important pages.
3. Page Speed Impact
Each redirect adds a full HTTP round-trip of latency — often 50–300ms per hop depending on geography and server speed. A three-hop chain on a mobile connection can add over a second to your time-to-first-byte.
How to Use the Redirect Checker
- Enter the starting URL (try an http:// version to see it redirect to HTTPS).
- Click Trace Redirects — the tool follows the chain hop by hop.
- Review the timeline: each hop shows the URL, HTTP status code, and destination.
- Identify and fix any unnecessary hops in your redirect chain.
Best Practices for Redirects
- Minimize chain length: Aim for a single redirect from old URL to final URL. Update internal links to point directly to the final destination.
- Prefer 301 for permanent moves: Use 301 (not 302) for SEO-critical redirects to ensure equity passes correctly.
- Audit after migrations: After a site migration or CMS change, always check your most important URLs for unexpected redirect chains.
- Check www vs. non-www: Ensure you have exactly one canonical root URL and that the other redirects to it cleanly.
Privacy
This tool makes server-side HTTP requests to trace your redirect chain. It validates all URLs for security purposes (blocking private IP ranges) but does not log or store the URLs you check.
Frequently Asked Questions
Related Tools
You might also find these utilities helpful for your redirect checker workflow.
Domain Age Checker
Discover the original registration date of any website.
HTTP Headers Checker
Inspect the raw HTTP response headers of any URL. View security headers, cache-control, server info, and more — instantly in your browser.
Page Size Checker
Measure the total weight of any webpage — HTML, CSS, JavaScript, and Images — to diagnose performance and Core Web Vitals issues.