What a redirect chain is
A redirect chain appears when an address does not lead straight to its destination but to another that redirects in turn, and so on. Instead of A to C, the browser walks A, then B, then C, and only then receives the page.
Each link is a complete request. If the hop changes domain or protocol, DNS has to be resolved again, the connection opened again and TLS negotiated again. That is why a chain's cost grows far faster than the number of hops suggests.
They are almost never built deliberately. They accumulate: a migration changed the URL structure, later everything moved to HTTPS, then www was unified one way or the other, and each step added its own rule without reviewing the earlier ones. The result works, and that is precisely why nobody looks at it.
The extreme case is the loop: A redirects to B and B back to A. The browser detects it after a few attempts and shows an error, making the page entirely unreachable. It is rare, and when it happens the two rules usually come from different people at different times.
One distinction decides whether a chain is a problem or a curiosity: who walks it. A user arriving from an old bookmark pays it once and moves on. The crawler walks it every time it returns, and chains usually affect whole families of URLs rather than a single one.
So the same fault can be irrelevant on a blog with thirty articles and expensive in an e-commerce shop with twenty thousand product pages: there a misplaced rule multiplies with every product, every filter and every variant.
