Redirect to homepage: the URL and its SEO go up in smoke

In brief

The page redirects to the homepage: Google treats this blanket redirect as a soft 404, and the original URL's content, rankings and backlinks are lost. Restore the page, or 301-redirect to the closest equivalent page, never to the home.

CriticalP0 — Deindexing

What is it?

The page redirects to the homepage.

Why it hurts SEO and AI

Google treats a blanket redirect to the homepage as a soft 404: the original URL's content, rankings and backlinks are lost. It is a frequent symptom of a broken route after a redesign.

When it is NOT a problem

  • The home genuinely is the closest equivalent (e.g. a subpage merged into the homepage) — a rare case.
  • An accepted temporary redirect during short maintenance, on a non-strategic URL.
  • The URL is a disposable marketing link (finished campaign) you knowingly send to the home, with no content or backlinks to preserve.
Before
GET /shoe-size-guide
-> HTTP/1.1 301 Moved Permanently
Location: https://site.com/
After
GET /shoe-size-guide
-> HTTP/1.1 301 Moved Permanently
Location: https://site.com/help/size-guide

Redirecting to the home wipes the content; redirecting to the closest page passes authority to relevant content.

How to fix it

  1. Check the redirect destination (curl -I or the Network tab): does it confirm a jump to the site root?
  2. Decide the page's fate: restore it if still useful, or choose a relevant equivalent target.
  3. Replace the redirect to the home with a 301 to the closest page by topic.
  4. Re-crawl to confirm the page no longer redirects to the homepage.

This scan checks the HTTP status, noindex and canonical of every page

Is this issue on your site?

Are some of your pages landing on the home? Enter a URL: Seogard follows each page's redirects and alerts you when one points to the homepage, a classic sign of a broken route. Free, no credit card.

  • No credit card
  • Result in ~30 s

What you get back

The URL's authority is passed to relevant content instead of being lost.

Seogard catches this regression automatically — through its monitoring for your metas and canonicals.

Frequently asked questions

Why is a redirect to the home treated as a soft 404?

Because the home does not answer the original URL's intent: Google decides the expected content no longer exists and denies the benefit of a real redirect.

Is a 404 better than a redirect to the home?

Often yes: a 404 is honest and lets Google clean up properly, whereas a redirect to the home wastes crawl budget and blurs the signals.

Related rules

Updated July 10, 2026