Redirects
Redirect chains of configurable depth.
Redirects N times via 302 before returning a final 200. Each hop decrements the counter in the query string. Tests redirect-following limits, history tracking, and loop detection.
n
Number of hops before resolving. Range: 0–20. Default: 3.
The chain is stateless: each redirect carries the remaining hop count in the URL, so no server-side state is needed. The cap is 20 hops — enough to trigger most client limits without being a useful amplification vector.
Set ?n=0 to hit the terminal response directly, useful for verifying your
client reaches the end of a chain correctly.