RedirectKetten
RedirectKetten, a term commonly used in German-language web development, refers to redirect chains: sequences where a URL response 3xx redirects to another URL, which may in turn redirect again, eventually reaching a final destination.
They arise from migration projects, URL restructuring, CMS configuration, or outdated internal links. Common triggers include
Impact: Each redirect adds latency; crawlers must follow each step; long chains waste bandwidth and crawl budget;
Best practices: minimize chain length; aim for direct redirects to the final URL; prefer 301 for permanent
Detection and debugging: use command line tools (curl -I, wget --server-response), browser developer tools, or SEO
See also: HTTP redirect, 3xx status codes, search engine optimization.