How to Check a URL Redirect Chain (Free Online Tool)

August 26, 2026 · 4 min read

When you type a URL into a browser, you often don't land on the address you typed. The server may send your browser through two, three, or more hops before it reaches the final page. Each hop is an HTTP redirect — and when one of them is wrong, you get slow loads, lost SEO value, or a broken page.

This guide shows how to trace a redirect chain in seconds with our free URL Inspector, and what to do about the problems it finds.

Check a redirect chain now: paste any URL into the free URL Inspector. You'll see every hop, every status code, all response headers, and the SSL certificate of the final destination — no signup.

What a redirect chain looks like

A typical chain after migrating to HTTPS might be:

  1. http://example.com301https://example.com
  2. https://example.com301https://www.example.com/
  3. https://www.example.com/200 OK

Each hop costs an extra round trip. Google follows up to 10 hops, but every unnecessary hop dilutes link signals and adds latency — especially on mobile connections.

The status codes that matter

CodeMeaningUse for
301Permanent redirectDomain migrations, HTTPS upgrades, renamed pages. Passes full SEO value.
302 / 307Temporary redirectShort-term changes: maintenance pages, A/B tests. Search engines keep the old URL indexed.
308Permanent, method-preservingLike 301 but guarantees POST stays POST. Used by CDNs like Cloudflare Pages.
Meta refresh / JSClient-side redirectAvoid. Slower and unreliable for search engines.

The most common mistake is using 302 where 301 was intended. If a page has moved permanently but you redirect with 302, Google may keep showing the old URL — or worse, treat the redirect as soft-deleted content.

Common redirect problems (and fixes)

Don't forget the SSL certificate at the end of the chain

A redirect can mask an SSL problem: the first hop works, but the final host has an expired certificate, a chain that isn't trusted, or TLS 1.0 only. Visitors see the error at the last second — after waiting through every hop.

The URL Inspector checks this automatically: for every URL you inspect, it performs a live TLS handshake against the final host and reports the issuer, expiry date with days remaining, TLS version, whether the chain is trusted, and pass/fail checks for hostname match, key strength, and self-signed certificates. Certificates under 30 days are flagged as warnings; expired ones fail outright.

Security headers worth checking while you're there

The same inspection shows the HTTP security headers of the final response. The big ones:

For a full walkthrough of every header, see the HTTP headers reference.

Try it

Paste any URL into the free URL Inspector — you'll get the complete redirect chain, all response headers, security header analysis, and a live SSL/TLS report in one view. Nothing is stored, no account needed.

If you also monitor uptime for your sites, take a look at DeskUptime — a lightweight desktop uptime monitor for macOS, Linux, and Windows.