Glossary
301 / 302 redirect (HTTP redirect)
The 301 (Moved Permanently) and 302 (Found, temporary) codes are the two main HTTP redirects: a 301 tells search engines the URL has changed permanently and fully transfers SEO authority to the new URL; a 302 is a temporary redirect that does not make this transfer.
Also known as
- 301 redirect
- 302 redirect
- permanent redirect
- temporary redirect
- HTTP redirect
Simple rule: for any **permanent** URL change (redesign, page merge, domain migration, renamed slug), use a **301** — Google and Bing consolidate PageRank, backlinks, and engagement signals to the new URL within weeks to months. For a **temporary** change (server-side A/B test, maintenance page, conditional geo-redirect), use a **302** — no authority transfer, the old URL remains the canonical in the eyes of search engines.
Costly mistakes: (1) **redirect chains** (A → B → C → D — each hop loses ~10% of SEO signal according to Moz studies, and Googlebot may abandon after 3+ hops), (2) **301 to a non-equivalent page** (redirecting all product pages to the homepage dilutes relevance and Google treats it as a soft 404), (3) **302 on a permanent migration** (the Google ↔ Yahoo Japan case in 2014: heavy use of 302s cost rankings for months), (4) **cascade redirects between HTTPS, www, and trailing slash** not consolidated (forces 2–3 hops on every visit).
Modern 2026 practice: on any redesign or migration, **exhaustively map every old URL to its equivalent** (never "all to the homepage"), **avoid chains** (redirect directly to the final destination), and **monitor** Search Console for 4xx/5xx errors for 3–6 months post-migration.
In the getchatsocial.com product
getchatsocial.com uses native Next.js redirects (`redirects()` in `next.config.ts` + `NextResponse.redirect` on the API/middleware side) to handle renamed glossary slugs or compare page slugs — with a 1:1 old → new URL mapping.
FAQ
How long does Google take to consolidate a 301?
Typically 3–12 weeks for most PageRank and signals to transfer (John Mueller, Google: "long-term, 301s pass full PageRank"). On a high-authority site with many backlinks pointing to the old URL, consolidation can take 6 months. Best practice: keep the 301 in place "forever" (at least 1 year, ideally permanent).
Are redirect chains really a problem?
Yes — each hop loses ~10% of SEO signal according to Moz, and Googlebot may abandon after 3–5 consecutive hops. In an audit, list all redirects and shorten A → B → C to A → C directly. The impact is measurable on legacy sites that have gone through multiple migrations.