The measured data reveals key findings: for 1 hop (http→https, ideal), the pass-rate/value is 58%; for 2 hops, the pass-rate/value is 26%; for 3 hops, the pass-rate/value is 8%; for 4 or more hops (which poses an SEO risk), the pass-rate/value remains at 8%; and for a redirect loop (10 or more hops, which results in a halt), the pass-rate/value drops to 0.1%. Full tables are provided below on this page.
Below: key findings, platform breakdown, implications, methodology, FAQ.
Free online tool — redirect checker: instant results, no signup.
| Metric | Pass-rate / Value | Median | p75 |
|---|---|---|---|
| 1 hop (http→https, ideal) | 58% | — | — |
| 2 hops | 26% | — | — |
| 3 hops | 8% | — | — |
| 4+ hops (SEO risk) | 8% | — | — |
| Redirect loop (≥10 hops = halt) | 0.1% | — | — |
| 301 redirect | 82% | — | — |
| 302 redirect (wrong) | 11% | — | — |
| 307/308 redirect | 7% | — | — |
| Platform | Share | Pass / Detail | avg |
|---|---|---|---|
| WordPress | 18% | avg 2.1 hops | — |
| 1С-Bitrix | 14% | avg 2.8 hops | — |
| Next.js / SPA | 9% | avg 1.4 hops | — |
| Shopify | 4% | avg 1.8 hops | — |
| Tilda | 3% | avg 1.3 hops | — |
| Custom PHP | 32% | avg 2.2 hops | — |
Top-1000 Tranco (March 2026). curl -IL -w "%{num_redirects}\n" for every URL, separately http:// and https:// and with/without www. 301/302 classified by Location header + status. Platform detection — by Server/X-Powered-By/HTML signatures.
Redirect chains can significantly impact website performance and SEO, leading to slower load times and potential ranking penalties. A notable percentage of websites experience redirect chains, with many averaging around two hops per chain. This inefficiency not only frustrates users but also dilutes link equity. To mitigate risks, webmasters should aim for direct 301 redirects, which have a high pass rate, minimizing hops to enhance user experience and maintain SEO integrity.
Redirect chains occur when multiple redirects are in place before reaching the final destination URL. Each additional redirect introduces latency, which can degrade user experience and negatively affect search engine rankings. According to Google's Page Experience Update, sites with slow-loading pages may see reduced visibility in search results. The data shows that chains with three hops have a low pass rate, indicating potential issues in user experience and SEO effectiveness.
Studies indicate that websites with complex redirect chains are more likely to experience a drop in organic traffic. This is particularly concerning for e-commerce platforms where conversion rates are sensitive to load times. Search engines prioritize direct and fast-loading pages, and excessive redirect chains can lead to increased crawl budget consumption, preventing search bots from indexing all relevant pages. For instance, 26% of sites with two hops and only 8% with three hops successfully pass, highlighting the risks associated with longer redirect chains.
By following these best practices, webmasters can maintain optimal performance and SEO health.
To illustrate the impact of redirect chains, consider a scenario involving a website that has undergone several URL changes. Suppose the URL structure changed from example.com/old-page to example.com/new-page but was redirected through an intermediate URL, leading to a chain: example.com/old-page → example.com/intermediate-page → example.com/new-page.
To diagnose and fix this chain, follow these steps:
curl -I -L https://example.com/old-page to trace the redirection path. The output will show each redirect in the chain..htaccess file:Redirect 301 /old-page /new-pagecurl command to ensure the redirect chain is resolved. It should now return a single 301 redirect.By directly linking the old page to the new page, the site minimizes load time and preserves link equity, ultimately improving user experience and search rankings.
Incorrect or long redirect chains slow down the site, lose PageRank and confuse search crawlers. The tool visualizes the full redirect chain with response codes and timing for each hop.
Shows each redirect step: URL → code → URL → code, through to the final destination.
Measures latency at each redirect step for precise identification of performance bottlenecks.
Distinguishes 301, 302, 303, 307, 308 — each has different behavior for SEO and browsers.
Automatically detects circular redirects and warns before the browser throws an error.
redirect chain audit
301/302 debugging
HTTPS redirect check
UTM link tracking
Redirect check history and API for automated chain auditing.
Sign up freeUX — +100-300ms load time. SEO — Google accepts up to 5 hops without major losses. 6+ hops = red flag, especially for crawl budget.
In http:// server block do: <code>return 301 https://example.com$request_uri;</code> (not via www). Separate server block for www: <code>return 301 https://example.com$request_uri;</code>. Everyone lands on the final URL in 1 hop.
301 — traditional, universal support. 308 — RFC 7538, better for non-GET methods. For www→non-www (almost always GET) — both work, 301 is safer.
<a href="/en/redirects">Enterno Redirects checker</a> — enter the URL, see the full chain + codes + timing. Or: <code>curl -ILk https://example.com</code>.
Free plan — 10 monitors, checks every 5 min, no card required. Upgrade for 1-minute interval and multi-region monitoring.