Técnico

Redirect chains

Detects redirect chains longer than 2 hops.

¿Por qué importa esto?

Redirect chains slow down load time (each hop adds 100-300ms) and dilute the passed link value. Google recommends limiting redirect chains to a maximum of 1 hop.

¿Cómo se soluciona?

Analyze your redirects and combine multiple steps into one direct 301 redirect. Update internal links to the final destination. Avoid temporary 302 redirects for permanent moves.

Este check puntúa de 0 a 100. Bajo 50 es un fallo, 50 a 89 un aviso, 90 o más es bueno. Tras cada crawl ve la nota por página en el informe, con una breve explicación.

Preguntas frecuentes

Detects redirect chains longer than 2 hops.

Redirect chains slow down load time (each hop adds 100-300ms) and dilute the passed link value. Google recommends limiting redirect chains to a maximum of 1 hop.

Analyze your redirects and combine multiple steps into one direct 301 redirect. Update internal links to the final destination. Avoid temporary 302 redirects for permanent moves.

Ejemplo

Copie el código de abajo y adapte el dominio, la marca y el contenido a su situación.

# Direct 301 redirect (no chain) - 1 hop

# Nginx
location = /old-page/ {
    return 301 https://www.yourdomain.com/new-page/;
}

# Apache .htaccess
Redirect 301 /old-page/ https://www.yourdomain.com/new-page/

# Also update internal links to point directly to the final URL
# Avoid: /a/ → /b/ → /c/ (chain of 3 = slow + PageRank loss)
Empezar gratis