This site demonstrates real, testable redirect chains, loops, and proper single-hop
redirects. Use curl -I or a browser to verify each one.
A 2-hop redirect chain: /chain/start → /chain/mid → /chain-end
curl -I https://redirect-demo.pages.dev/chain/start
An infinite redirect loop: /loop/a → /loop/b → /loop/c → /loop/a → ...
⚠ Your browser or curl will stop after ~20 redirects with ERR_TOO_MANY_REDIRECTS.
curl -I https://redirect-demo.pages.dev/loop/a
A clean single-hop redirect — the way it should be done.
curl -I https://redirect-demo.pages.dev/simple
A temporary redirect (302) pointing to /temp-page.
curl -I https://redirect-demo.pages.dev/temporary
From your terminal:
# Follow all redirects and see every hop curl -IL https://redirect-demo.pages.dev/chain/start # See only the first response header curl -I https://redirect-demo.pages.dev/chain/start
Or use any online redirect checker like redirect-checker.org.
Built for demonstration purposes. Part of the pici.id content audit.