ToolNestr

Redirect Chain / HTTP Status Tracer

Enter any URL to trace its complete redirect chain. The tool follows up to 10 hops and reports each redirect along with the HTTP status code and response time.

Reviewed by the ToolNestr Editorial Team — July 2026

Redirect Chain Tracer

How HTTP redirects work

HTTP redirects are the web's mechanism for pointing a client from one URL to another. When a server sends a 3xx status code in response to a request, the accompanying Location header tells the client where to go next. The browser automatically follows this instruction and makes a new request to the target URL. This process repeats until a non-redirect response (typically 200 OK) is received, or until a redirect loop is detected. The redirect chain is the sequence of URLs visited during this process, from the original URL to the final destination.

The most common redirect status codes are defined in the HTTP/1.1 specification (RFC 7231). A 301 Moved Permanently tells the client and search engines that the resource has permanently relocated. Browsers cache this redirect so future requests go directly to the new URL. A 302 Found indicates a temporary move where the client should continue to request the original URL in the future. A 307 Temporary Redirect functions like a 302 but explicitly preserves the HTTP method and request body. A 308 Permanent Redirect is the permanent equivalent of 307, preserving the method. There are also 303 See Other, which forces a GET after a POST, and 304 Not Modified, which is not technically a redirect but tells the client its cached copy is still valid.

Each redirect hop adds a full HTTP round trip — DNS resolution, TCP connection, TLS handshake if applicable, request transmission, server processing, and response download. If the redirect points to a different hostname, the entire process repeats from DNS resolution onward. A chain of three or more redirects can easily add multiple seconds to page load time, especially on mobile networks with higher latency. For this reason, performance audits often flag any redirect chain longer than one hop as an issue that should be addressed.

HTTP Redirect Flow Diagram A step-by-step diagram showing how a browser follows HTTP redirects through multiple hops until reaching the final destination Browser Original request 1 Server A 301 / Location: B 2 Server B 302 / Location: C 3 Server C 200 OK (final) 4. Final response (200 OK) returned to browser Each hop adds latency DNS lookup + TCP connect + TLS handshake + HTTP request Each redirect may point to a different hostname, requiring a full connection cycle from scratch Best practice: minimise redirects, eliminate chains
HTTP redirect flow showing how each hop adds latency through DNS, TCP, and TLS connection overhead

Common redirect scenarios

Redirects are used in many common web scenarios. Domain migration is one of the most frequent — when a website moves from example.com to example.net, all old URLs should 301-redirect to their new equivalents so both users and search engines are directed to the correct location. URL normalisation is another: many servers redirect non-www to www (or vice versa), redirect HTTP to HTTPS, and redirect bare domains to a trailing slash path (example.com to example.com/ ). Tracking and affiliate links often use redirects to log clicks before forwarding visitors to the destination. URL shorteners are built entirely around redirects, storing a short code and issuing a 301 or 302 to the long target URL.

Content management systems also create redirects when page slugs change. If you rename a blog post from /blog/old-title to /blog/new-title, a well-configured CMS will set up a 301 from the old URL to the new one. E-commerce platforms redirect outdated product URLs when inventory changes. Marketing campaigns use redirects to send traffic from a QR code or short link to a landing page. In each of these cases, keeping the redirect chain to a single hop is critical for performance and search engine optimisation.

The worst-case scenario is the redirect chain that grows unintentionally over time. A common example: a site initially redirects http://example.com to http://www.example.com, then later adds an HTTPS redirect from http://www.example.com to https://www.example.com, resulting in a two-hop chain. Each subsequent configuration change can add another hop. This tool helps you identify such chains so you can consolidate them into zero or one hop by configuring your server to redirect directly to the final HTTPS URL.

How redirects affect SEO and performance

Search engines like Google consider redirects when crawling and indexing websites. A 301 redirect passes most of the original URL's ranking signals (link equity) to the destination URL. This means you can change your URL structure without losing search rankings, as long as you use proper 301 redirects. However, a chain of multiple redirects dilutes this equity — each hop reduces the amount of ranking signal that passes through. Google has stated that multiple redirects can also increase crawl time and reduce crawl budget, potentially slowing down how quickly your new content is indexed.

From a performance perspective, each redirect adds latency. On a desktop with a fast connection, two or three redirects might add only a few hundred milliseconds. On a mobile device on a 3G network, the same chain could add several seconds. The HTTP Archive reports that a significant percentage of websites still have redirect chains of three or more hops. Tools like Google PageSpeed Insights and Lighthouse flag these as opportunities for improvement. The fix is often straightforward: configure your web server or CDN to redirect directly to the final destination in a single hop.

References and further reading

Frequently asked questions

What is an HTTP redirect?

An HTTP redirect is a server response (3xx status code) that tells the client to make a new request to a different URL. The most common redirect types are 301 (Moved Permanently), 302 (Found), and 307 (Temporary Redirect).

What is the difference between a 301 and 302 redirect?

A 301 redirect indicates a permanent move. Browsers and search engines cache this redirect and update their records accordingly. A 302 redirect indicates a temporary move; the client should continue using the original URL for future requests.

What is a 307 redirect?

A 307 (Temporary Redirect) is similar to a 302 but guarantees that the request method (POST, PUT, etc.) is preserved across the redirect. A 302 may change POST to GET in some browsers, but 307 ensures the original method and body are used.

Why should I care about redirect chains?

Long redirect chains slow down page load times because each hop adds a full HTTP round trip. Search engines also penalise sites with excessive redirects. Keeping redirect chains to one hop or zero is a best practice for both performance and SEO.

What is a redirect loop?

A redirect loop occurs when URL A redirects to B, B redirects back to A, or forms a longer cycle that never reaches a 200 OK response. Browsers detect this and display an error. This tool limits tracing to 10 hops to prevent infinite loops.

How do I fix a broken redirect?

Inspect your server configuration (htaccess for Apache, nginx.conf for Nginx, or your CMS settings). Check that the target URL exists and does not itself redirect elsewhere unless intended. Use this tool to verify the fix after making changes.

What is a meta refresh redirect?

A meta refresh redirect uses an HTML meta tag (meta http-equiv="refresh") instead of an HTTP header. Search engines treat these differently and may not pass link equity as effectively as HTTP 301 redirects.

Can redirects affect SEO?

Yes. 301 redirects pass most link equity to the new URL and are the recommended method for permanent URL changes. 302 redirects do not pass link equity reliably. Chains of multiple redirects dilute link equity and increase page load time, both of which can harm search rankings.

All tool categories

Networking & IP Tools (36 tools)
🧮 Everyday (26 tools)
💪 Health & Fitness (30 tools)
💰 Finance (34 tools)
🔢 Math (23 tools)
📄 PDF Tools (10 tools)
🎨 Creators (12 tools)
💻 Developers (24 tools)
⚡ Engineering & Science (24 tools)
⚛️ Physics (48 tools)
🧪 Chemistry (50 tools)
🧬 Biology (50 tools)
🏠 Construction & Home Improvement (105 tools)
👗 Clothing & Garment Tools (68 tools)
🍳 Cooking & Baking (9 tools)
🚗 Automotive (26 tools)
🖼️ Image Tools (13 tools)
🔐 Security & Hash (15 tools)
📝 Text Tools (15 tools)
🔍 SEO Tools (11 tools)
🔄 Converters (69 tools)
🕐 Time & Date (15 tools)
📊 Chart Generators (11 tools)
🕌 Islamic Tools (16 tools)