Skip to main content
Detects links with multiple redirects
Rule IDlinks/redirect-chains
CategoryLinks
ScopePer-page
Severitywarning
Weight4/10

Solution

Redirect chains (A→B→C) slow page loading and waste crawl budget. Each redirect loses some link equity. Maximum recommended: 2 hops. Update links to point directly to final destinations. Common causes: HTTP→HTTPS, non-www→www, old URLs. Audit and fix chains starting from the source link.

Enable / Disable

Disable this rule

squirrel.toml
[rules]
disable = ["links/redirect-chains"]
squirrel.toml
[rules]
disable = ["links/*"]

Enable only this rule

squirrel.toml
[rules]
enable = ["links/redirect-chains"]
disable = ["*"]