In Google Search Console (GSC), the “Page with redirect” status means that Googlebot encountered a redirect when attempting to crawl the submitted URL. In other words, the URL doesn't serve content directly — it automatically forwards to another URL (via HTTP 3xx status codes).
π Common Types of Redirects
-
301 (Moved Permanently) – Recommended for SEO; tells Google to index the new URL.
-
302 (Found / Temporary) – May not pass full SEO value; not ideal for permanent moves.
-
JavaScript-based redirects – May not be followed reliably by crawlers.
-
Meta refresh redirects – Generally discouraged; can confuse Googlebot.
⚠️ How It Affects Indexing
Impact | Explanation |
---|---|
✅ Redirect target indexed | Google will often index the final destination of the redirect chain. |
❌ Original URL not indexed | The URL shown in GSC won’t be indexed — because it’s just a redirection. |
π Chains and loops | Multiple redirects (chains) or circular redirects can block indexing. |
π§ Signal dilution | If not configured properly (e.g., 302 instead of 301), SEO signals may be lost. |
π 1. Check the Redirect Type
Use curl -I https://yoururl.com
or an HTTP header checker to see if:
-
It returns a 301 or 302.
-
Where it redirects to.
Make sure it’s a 301 if the redirect is permanent.
π 2. Ensure Final URL is Indexed
Paste the destination URL into the URL Inspection Tool in GSC and make sure:
-
It is indexed.
-
It’s accessible (not blocked, no errors).
π 3. Update Internal Links (if needed)
If you’re linking to a URL that redirects:
-
Update the link to point directly to the final destination.
-
Avoid unnecessary redirects to improve crawl efficiency and reduce load time.
π§Ή 4. Clean Up Redirect Chains
-
A long chain of redirects (e.g., A → B → C → D) slows down crawling.
-
Use tools like Screaming Frog, Ahrefs, or Redirect Path to find and fix them.
✅ Summary
Key Point | Best Practice |
---|---|
“Page with redirect” | Google encountered a 3xx response |
Final page indexed instead | Ensure the redirect target is indexable |
Use 301 for permanent moves | Pass full SEO value |
Avoid redirect chains/loops | Keep redirects clean and minimal |
Update internal links | Point directly to final URLs |