Redirect 301 & 302 — Live Demo

This site demonstrates real, testable redirect chains, loops, and proper single-hop redirects. Use curl -I or a browser to verify each one.

301 Chain /chain/start

A 2-hop redirect chain: /chain/start/chain/mid/chain-end

curl -I https://redirect-demo.pages.dev/chain/start

301 Loop /loop/a

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

301 Single /simple

A clean single-hop redirect — the way it should be done.

curl -I https://redirect-demo.pages.dev/simple

302 Temporary /temporary

A temporary redirect (302) pointing to /temp-page.

curl -I https://redirect-demo.pages.dev/temporary

How to Test

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.