What does Google say about SEO? /
Quick SEO Quiz

Test your SEO knowledge in 3 questions

Less than 30 seconds. Find out how much you really know about Google search.

🕒 ~30s 🎯 3 questions 📚 SEO Google

Official statement

Displaying an informative pop-up after a 301 redirect to inform users that they have been redirected does not affect SEO. Google follows the redirect without sending a referrer and likely will never execute this pop-up, allowing for direct indexing of the new content.
28:23
🎥 Source video

Extracted from a Google Search Central video

⏱ 54:54 💬 EN 📅 12/06/2020 ✂ 17 statements
Watch on YouTube (28:23) →
Other statements from this video 16
  1. 1:55 Pourquoi un nouveau site subit-il des montagnes russes dans les SERP pendant 12 mois ?
  2. 3:29 Faut-il vraiment ignorer les backlinks spammy automatisés ?
  3. 6:43 Pourquoi les redirections géographiques automatiques sabotent-elles votre crawl Google ?
  4. 12:00 Le mobile-first indexing est-il vraiment un facteur de classement ?
  5. 15:11 Pourquoi vos images et vidéos desktop deviennent-elles invisibles pour Google en mobile-first ?
  6. 18:17 Le géotargeting repose-t-il vraiment sur le ccTLD et Search Console uniquement ?
  7. 21:21 Faut-il vraiment abandonner les redirections géolocalisées pour une bannière de sélection régionale ?
  8. 24:43 Le bounce rate Analytics est-il vraiment inutile pour votre SEO ?
  9. 29:55 Faut-il vraiment garder le canonical desktop→mobile en mobile-first indexing ?
  10. 29:55 Les liens externes vers m. ou www. influencent-ils différemment le ranking ?
  11. 34:01 Le rel canonical consolide-t-il vraiment TOUS les signaux de liens vers l'URL choisie ?
  12. 36:45 Le nombre de mots est-il vraiment inutile pour ranker sur Google ?
  13. 40:07 Pourquoi la navigation JavaScript sans URLs tue-t-elle l'indexation mobile-first de votre site ?
  14. 43:27 Google teste-t-il vraiment la version AMP pour les Core Web Vitals même si la version mobile est indexée ?
  15. 45:23 Pourquoi votre site n'est-il toujours pas migré vers le mobile-first indexing ?
  16. 47:24 Google estime-t-il vraiment les Core Web Vitals des sites à faible trafic ?
📅
Official statement from (5 years ago)
TL;DR

Google states that an informative pop-up displayed after a 301 redirect does not impact SEO. The engine follows the redirect without passing a referrer and generally never executes this pop-up during crawling. In practice, this means you can alert your users to a change in URL without fearing it will block the indexing of the new content — as long as you implement this mechanism correctly.

What you need to understand

Why does Google allow these pop-ups after a redirect?

When a user arrives at a URL that has been redirected via 301, it can be relevant to inform them that they have changed pages — especially if the old URL was bookmarked or shared. Google recognizes this practice as legitimate from a UX perspective.

The Google bot never sees this pop-up. It follows the HTTP redirect even before the JavaScript executes. As a result: no negative SEO impact, since the crawler accesses the final content directly without interference.

How does Google technically handle this situation?

When Google crawls a URL using 301, it records the redirect and indexes the target page. The HTTP referrer is not passed in this context — this is the standard behavior of server redirects.

If a pop-up shows on the client side (via JavaScript), Google likely will never execute it during the initial crawl. Even if Googlebot executes JS in certain cases, the HTTP redirect precedes JavaScript analysis. The bot does not wait for an arbitrary delay for a script to trigger an overlay.

What’s the difference with traditional intrusive interstitials?

Google penalizes intrusive interstitials that hide the main content as soon as the user arrives on a page — not after a redirect. The nuance is essential: an informative post-redirect pop-up does not prevent access to the content.

This pop-up must be non-blocking, easily closable, and not obscure the entire viewport. In this case, it remains compliant with Google's Page Experience guidelines. An overlay that forces the user to wait or to click would be problematic.

  • 301 redirects are handled server-side, before any JavaScript execution.
  • Googlebot does not wait for JS execution to follow an HTTP redirect.
  • A non-blocking informative pop-up remains compliant with Google's UX rules.
  • The referrer is not transmitted during a standard server redirect.
  • Indexing occurs on the target page, not on the redirected source URL.

SEO Expert opinion

Is this statement consistent with real-world observations?

Yes, it aligns with tests conducted on site migrations with thousands of 301 redirects. In all observed cases, Google indeed indexes the target page without client-side JavaScript pop-ups interfering. The delay between redirection and indexing remains standard (a few hours to a few days depending on domain authority).

That said, there is some ambiguity regarding cases where Googlebot does execute JavaScript — particularly for sites with heavy JavaScript rendering. Mueller's recommendation remains cautious: “probably never”, not “never”. [To check] if your pop-up loads blocking resources or delays critical rendering.

What nuances should be added to this rule?

Mueller refers to an “informative” pop-up — not an ad overlay, aggressive email capture, or paywall. If your pop-up triggers a crawl delay, hides indexable content, or alters the DOM structure before the first paint, you step outside this statement's bounds.

Another crucial point: this tolerance applies to classic 301 redirects, not to JavaScript or Meta Refresh redirects. In the latter cases, Google may indeed execute JS and encounter your pop-up — with a risk of UX devaluation.

In what cases might this rule not apply?

If your pop-up triggers before the redirect (which technically makes no sense for a server 301 but is possible with JS), Google will see it and might consider it an intrusive interstitial. The same applies if you use a JavaScript redirect with a delay of several seconds.

Be careful with redirect chains (A → B → C) where a pop-up displays on B before redirecting to C. Google follows up to 5 redirects, but each intermediate step can pose an issue if it loads blocking content.

Be cautious: do not confuse “no SEO impact” with “no UX consequences.” A poorly implemented pop-up can degrade your Core Web Vitals (CLS, INP) and indirectly harm your ranking through the Page Experience signal.

Practical impact and recommendations

What should you do concretely during a migration with redirects?

Implement your 301 redirects server-side (.htaccess, nginx.conf, or via your CDN). This is the only guarantee that Google will follow them instantly without executing JavaScript. If you need to display a message to users, do so after the complete loading of the target page.

Use an asynchronous JavaScript script that detects if the user arrives via an old URL (for example, by storing a parameter in sessionStorage). Display a discreet, non-blocking overlay with a visible close button. Avoid any delay before showing the main content.

What mistakes should you avoid to not compromise indexing?

Never hide indexable content with your pop-up before Google has had a chance to crawl it. Even if Mueller states that the bot probably does not execute this JS, a poorly coded overlay can block initial rendering or cause a catastrophic Cumulative Layout Shift.

Avoid redirect chains where each step loads JavaScript. Google may abandon the crawl after several hops. Never rely on Meta Refresh or JavaScript redirects for critical SEO migrations — only HTTP 301/302 are reliable.

How can you verify that everything is working correctly?

Test your redirects with Google Search Console (URL inspection tool) to confirm that the target page is indexing correctly. Check server logs to ensure Googlebot follows the redirect without 4xx/5xx errors. Analyze your Core Web Vitals for any impact of the pop-up on CLS or INP.

Use a crawler like Screaming Frog in “Follow Redirects” mode to map all chains and detect loops. Test the user journey under real conditions: a pop-up that annoys your visitors will ultimately degrade your behavioral signals (bounce rate, time on site), which can indirectly affect ranking.

  • Implement 301 redirects server-side, never in JavaScript.
  • Load the pop-up asynchronously after rendering the main content.
  • Make the overlay easily closable, without mandatory delay.
  • Monitor Core Web Vitals for any degradation of CLS/INP.
  • Check indexing in Search Console in the days following the migration.
  • Analyze server logs to confirm Googlebot is correctly following redirects.
Informative post-redirect pop-ups are tolerated by Google as long as they are non-blocking and implemented client-side after a proper HTTP redirect. Be careful not to compromise your Core Web Vitals or user experience. For complex migrations involving thousands of redirects, comprehensive UX/SEO audits, or delicate technical overhauls, the support of a specialized SEO agency can be invaluable to avoid pitfalls and ensure a transition without traffic loss.

❓ Frequently Asked Questions

Un pop-up après redirection 301 peut-il bloquer l'indexation de la nouvelle page ?
Non. Google suit la redirection HTTP avant d'exécuter le JavaScript côté client. Le bot indexe directement la page cible sans voir le pop-up.
Faut-il éviter tout pop-up sur les pages redirigées pour le SEO ?
Non, tant que le pop-up est informatif, non-bloquant et chargé après le contenu principal. Google ne pénalise pas cette pratique dans ce contexte précis.
Les redirections JavaScript sont-elles compatibles avec cette déclaration de Google ?
Non. Mueller parle explicitement de redirections 301 serveur. Les redirections JavaScript peuvent être crawlées différemment et exposer le bot au pop-up.
Comment Google gère-t-il le referrer dans le cas d'une redirection 301 ?
Google ne transmet pas de referrer HTTP lors d'une redirection serveur classique. Le bot suit la chaîne de redirections sans référence à l'URL source.
Un pop-up post-redirection peut-il nuire aux Core Web Vitals ?
Oui, si mal implémenté. Un overlay qui provoque du Cumulative Layout Shift ou retarde l'Interaction to Next Paint peut dégrader vos métriques UX et, indirectement, votre ranking.
🏷 Related Topics
Content Crawl & Indexing AI & SEO Local Search Redirects

🎥 From the same video 16

Other SEO insights extracted from this same Google Search Central video · duration 54 min · published on 12/06/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.