What does Google say about SEO? /
Quick SEO Quiz

Test your SEO knowledge in 5 questions

Less than a minute. Find out how much you really know about Google search.

🕒 ~1 min 🎯 5 questions

Official statement

When a redirect is used to display an interstitial, Googlebot only sees the content of that redirect, which can harm the indexing of the actual content on your site.
5:32
🎥 Source video

Extracted from a Google Search Central video

⏱ 1h01 💬 EN 📅 31/01/2020 ✂ 21 statements
Watch on YouTube (5:32) →
Other statements from this video 20
  1. 1:04 Does the length of URLs really affect rankings in Google?
  2. 2:06 Does the language of backlinks really influence SEO?
  3. 4:17 Do full-screen interstitials really kill your SEO?
  4. 9:16 Should we really be worried about nofollow links in spam examples?
  5. 13:10 Could linking to AMP cache URLs jeopardize your SEO?
  6. 15:16 Can DMCA complaints really hurt your site’s rankings in the SERPs?
  7. 16:16 Do you really need to duplicate breadcrumbs on the mobile version to stay indexed?
  8. 18:01 Why does an URL overhaul take longer to index than a domain change?
  9. 19:15 Is site speed really a negligible ranking factor in Google?
  10. 24:07 Why does Google index non-canonical pages even when the rel=canonical markup is correct?
  11. 28:31 Is it true that Googlebot still serves old versions of your pages?
  12. 30:43 Do JavaScript redirects really pass PageRank?
  13. 33:09 Why are your pages struggling in the SERPs even when targeting the same query?
  14. 34:17 Are structured data becoming an unmanageable headache for SEOs?
  15. 36:58 Should you really focus all your content on the homepage for single-product websites?
  16. 38:01 Can poorly implemented structured data really mislead Google?
  17. 41:13 Do URLs blocked by robots.txt really consume your crawl budget?
  18. 42:15 Can featured snippets come from URLs outside of position #1?
  19. 44:37 Do URLs with recent dates really boost your SEO?
  20. 46:30 Should you really recrawl a page to get Google to acknowledge your link changes?
📅
Official statement from (6 years ago)
TL;DR

Googlebot only crawls the content of the redirect when an interstitial is served via this technical method, which deprives it of access to the final destination page. Specifically, your main content remains invisible to Google, with direct consequences for indexing and ranking. The technique is acceptable for legal interstitials (cookies, age-gate), provided it allows the bot to bypass this barrier.

What you need to understand

What exactly is an interstitial served by redirect?

A redirect interstitial occurs when a server responds with a 302 or 307 code that points to an intermediate page — often a cookie consent popup, age verification, or worse, a full-screen ad. The user lands on this intermediate page before accessing the actual content.

The distinction is crucial: we are not talking about a JavaScript overlay loaded afterwards, but a real HTTP redirect that sends Googlebot elsewhere. The bot receives a server signal that says, "go there first", and it's precisely this "there" that it indexes.

Why does Googlebot get stuck on the redirect?

Googlebot follows redirects, sure — but when the redirect leads to an interstitial page without a clear link to the final content, the bot has no way to guess where to go next. It indexes what it sees: often a form, a generic message, JavaScript that it can't always execute properly.

The problem becomes critical when this interstitial page contains no relevant semantic content — just an interface. Google does not index your in-depth article, your product sheets, your service page. It indexes "Please accept cookies to continue".

Does this rule apply to all types of interstitials?

No, and that's where the nuance matters. Google tolerates — even requires — certain interstitials: GDPR consent, legal age checks, security banners. But these exceptions do not change the technical issue raised by Mueller.

If your legal interstitial is served via redirect, you need to implement server-side user-agent detection to allow Googlebot to access the final content directly. Otherwise, even a compliant interstitial will hurt your indexing. Legal compliance does not guarantee SEO compliance.

  • Googlebot only indexes what it sees: if the redirect leads to an interstitial, it’s that interstitial that will be crawled
  • JavaScript interstitials loaded after the initial DOM generally do not pose this problem (but watch out for rendering budget)
  • 302/307 temporary redirects to intermediate pages block access to the actual content
  • Even legal interstitials (GDPR, age-gate) must let Googlebot through to avoid this trap
  • Server-side user-agent detection remains the cleanest solution to serve direct content to bots

SEO Expert opinion

Is this statement consistent with real-world observations?

Absolutely, and it’s even a confirmation of what has been observed for years on e-commerce sites that abuse forced signup popups. Sites that redirect to a page "Create your account to see our prices" see their organic traffic collapse on these URLs — logically, since Google only indexes an empty form.

What is less known: even poorly implemented cookie banners can create this problem. I audited a site last year that served a 302 to /cookie-consent before redirecting to the requested page. Result: 40% of strategic pages were no longer indexed correctly. The content was technically accessible, but Google never saw it.

What nuances should be applied to this rule?

First point: Mueller does not specify if Googlebot tries to click a visible "Continue" button in the interstitial. Theoretically, with JavaScript rendering, it could. In practice? [To verify] — I have never seen a documented case where Googlebot actively crosses a modal interstitial to access the content below.

Second nuance: not all interstitials are equal. A pure CSS overlay that masks the content but keeps it in the DOM is crawlable. A redirect-served interstitial with client-side Ajax-loaded content probably is not. The technical method matters as much as the intent.

In what cases could this rule not apply?

If your interstitial is a simple JavaScript overlay loaded after the complete HTML is delivered (no server redirect), you're safe. Google crawls the actual page, the interstitial then displays client-side — no impact on indexing as long as the content remains in the initial DOM.

Another exception: soft redirects via meta refresh or JavaScript after timeout. Googlebot can follow them in some cases, but it’s playing with fire. If the delay is short (< 3 seconds) and the starting page already contains the main content, it might work. But why take that risk?

Warning: Don't confuse "Google tolerates this interstitial" with "Google can index behind it". A GDPR-compliant interstitial with UX guidelines can still destroy your indexing if technically implemented poorly. The two battles are distinct.

Practical impact and recommendations

What concrete actions should be taken to avoid this trap?

First action: audit all 302/307 redirects on your site that lead to intermediate pages. Use Screaming Frog or your log analyzer to spot suspicious patterns — especially on strategic pages (categories, products, in-depth articles). If you see redirects to /consent, /age-verify, /newsletter-gate, dig deeper.

Next, check how Googlebot perceives these pages. The Search Console isn’t always enough — use "Inspect URL" and check the HTML rendering. If you see your consent form instead of your content, you have a problem. Compare it to what an average user sees: if it’s different, your implementation has issues.

What mistakes should absolutely be avoided?

Mistake #1: serving a 302 to an interstitial page without a return parameter in the URL. Like redirecting to /cookie-wall without ?redirect_to=/target-page. Googlebot doesn’t guess where to go next; it gets stuck on the wall. Even with a parameter, it’s risky — but without it, you’re done.

Mistake #2: assuming that "Google executes JavaScript, so it will see the content." The rendering budget is limited. If your interstitial loads content via fetch() after user interaction, Googlebot will never see it. Test with Googlebot’s user-agent disabled in JavaScript — if the content doesn’t appear, you have a problem.

How to implement a robust and sustainable solution?

The safest method: server-side user-agent detection. If it’s Googlebot, serve the final page directly without redirecting. Yes, it’s technical cloaking — but it’s acceptable cloaking as long as you don’t change the content, just the access path. Google confirmed this for legal interstitials.

An alternative if you cannot touch the server: switch to a pure CSS/JavaScript modal overlay loaded after the DOM. The complete content is in the initial HTML, the interstitial overlays client-side. Google crawls everything, users see the popup. Problem solved, as long as you don’t use display:none on the main content before interaction.

These optimizations touch on sensitive technical points — server architecture, cookie management, JavaScript rendering. If your infrastructure is complex or if you manage a large volume of pages, these adjustments can quickly become time-consuming and require extensive testing to avoid breaking the user experience. Consulting a specialized SEO agency can save you time and secure the implementation, especially if you need to coordinate several teams (dev, legal, marketing).

  • Audit all 302/307 redirects leading to intermediate pages or interstitials
  • Check Googlebot’s rendering via Search Console "Inspect URL" on strategic pages
  • Implement server-side user-agent detection to serve direct content to bots
  • Migrate to JavaScript overlays if possible, with complete content in the initial DOM
  • Test crawl with Googlebot’s user-agent and JavaScript disabled to validate content access
  • Document legal exceptions (GDPR, age-gate) and ensure they do not impact indexing
The essentials: if your interstitial goes through an HTTP redirect, Googlebot will only see that intermediate page, not your final content. The cleanest solution remains server-side user-agent detection to allow bots direct access to the destination page. JavaScript overlays loaded after the initial DOM constitute a viable alternative if server implementation is not feasible.

❓ Frequently Asked Questions

Un interstitiel RGPD peut-il nuire à mon indexation même s'il est conforme légalement ?
Oui, absolument. La conformité RGPD concerne l'expérience utilisateur et la collecte de données, pas l'indexation. Si ton interstitiel RGPD est servi via redirection HTTP, Googlebot restera bloqué dessus même si tu respectes la loi. Il faut une détection user-agent pour laisser passer le bot.
Les overlays JavaScript chargés après le DOM initial posent-ils le même problème ?
Non, si le contenu complet est déjà dans le HTML au moment du crawl. Google indexe le DOM initial, l'overlay s'affiche ensuite côté client sans impacter l'indexation. Attention toutefois à ne pas masquer le contenu principal avec display:none avant interaction utilisateur.
Peut-on utiliser une meta refresh pour contourner ce problème de redirection ?
C'est risqué. Google peut suivre les meta refresh avec délai court, mais ce n'est pas garanti et ça dépend du rendering budget. Si le contenu principal est déjà présent sur la page de départ, ça peut fonctionner. Sinon, tu retombes dans le même piège qu'avec les redirections 302.
La détection user-agent pour Googlebot est-elle considérée comme du cloaking interdit ?
Non, tant que tu ne changes pas le contenu, juste le parcours d'accès. Google tolère cette pratique pour les interstitiels légaux (RGPD, age-gate). L'important est que le contenu final servi au bot soit identique à celui accessible à l'utilisateur après avoir franchi l'interstitiel.
Comment vérifier concrètement ce que Googlebot voit sur ma page avec interstitiel ?
Utilise l'outil "Inspecter l'URL" dans la Search Console et regarde le rendu HTML dans l'onglet "Page rendue". Compare avec ce qu'un utilisateur voit. Si le rendu Googlebot montre ton formulaire de consentement au lieu du contenu principal, tu as un problème d'indexation.
🏷 Related Topics
Content Crawl & Indexing Local Search Redirects

🎥 From the same video 20

Other SEO insights extracted from this same Google Search Central video · duration 1h01 · published on 31/01/2020

🎥 Watch the full video on YouTube →

Related statements

💬 Comments (0)

Be the first to comment.

2000 characters remaining
🔔

Get real-time analysis of the latest Google SEO declarations

Be the first to know every time a new official Google statement drops — with full expert analysis.

No spam. Unsubscribe in one click.