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

If you are blocking access to pages based on the referrer, consider noindexing them. For confidential content, server-side authentication is recommended.
23:44
🎥 Source video

Extracted from a Google Search Central video

⏱ 47:39 💬 EN 📅 12/01/2016 ✂ 25 statements
Watch on YouTube (23:44) →
Other statements from this video 24
  1. 2:06 Is rel=canonical really enough to manage A/B testing in SEO?
  2. 2:06 Should you really use rel=canonical on your A/B test pages?
  3. 3:07 What does the integration of Panda into the main algorithm really mean for your SEO?
  4. 5:07 Is it true that Panda is now part of Google's core ranking system?
  5. 5:51 What’s going on when Google suddenly uncovers thousands of new URLs on your site?
  6. 6:14 Could a sudden surge in URLs trigger a warning in Google Search Console?
  7. 6:49 Does Google really roll out updates in real time?
  8. 9:26 Should you really enforce all your internal links as dofollow to rank?
  9. 12:07 Are automated dofollow links to your own content finally permitted by Google?
  10. 12:29 Can you really merge multiple sites into one using rel="canonical"?
  11. 13:29 Are Google updates truly real-time or is it an SEO myth?
  12. 13:51 Should you use rel=canonical between subdomains and the main domain to manage duplicate content?
  13. 15:38 Are mobile interstitials really penalized by Google?
  14. 16:55 Should you really validate your AMP pages to ensure Google recognizes them?
  15. 19:06 Does user search history really distort your SEO ranking tests?
  16. 21:37 Do Google algorithms really work the same way across all languages?
  17. 22:00 Is it really enough to just add the date in WordPress content for Google to recognize an update?
  18. 22:56 Can shared hosting really hurt your SEO?
  19. 25:58 Do mobile interstitials really hurt your Google ranking?
  20. 31:46 Does your search history really skew your SEO analysis?
  21. 32:22 Why does Google almost never notify you when an algorithm penalizes you?
  22. 36:59 Does shared hosting really harm your site's SEO?
  23. 40:25 Does duplicate content really lead to a Google penalty?
  24. 48:29 Does integrating Panda into the core really mean it's real-time?
📅
Official statement from (10 years ago)
TL;DR

Google recommends noindexing pages whose access is conditioned by the HTTP referrer. For truly confidential content, this method remains insufficient: server-side authentication is essential. The referrer is an easily bypassed filter, unsuitable for protecting sensitive data but usable for light display restrictions.

What you need to understand

Is the HTTP referrer a reliable security mechanism?

The HTTP referrer is the URL from which a visitor originates. Some sites block access to pages if the referrer does not match an expected domain. This method aims to prevent direct access or access from unauthorized third-party sites.

Let's be clear: this is not security. The referrer can be spoofed in seconds using a browser extension, a proxy, or a simple curl command. Any configured crawler can ignore or modify it. Google itself can send requests with or without a referrer as needed.

Why does Google suggest noindexing these pages?

If Googlebot encounters a page blocked based on the referrer, it cannot access the content. Indexing becomes random: sometimes the bot arrives with a valid referrer (internal navigation), sometimes it does not (discovered via an external link). The result: orphaned pages, inaccessible content, conflicting signals.

The noindex directive avoids this instability. It clearly indicates to Google not to index the page, even if it occasionally manages to access it. It is a clean stance: either the page is indexable and accessible, or it is not.

What’s the difference with server-side authentication?

Server authentication (session, JWT token, OAuth) verifies the true identity of the user before serving the content. It systematically blocks Googlebot with an HTTP 401 or 403 code. No ambiguity: the content remains out of index.

This is the only viable method for confidential content (client area, private documents, sensitive data). The referrer protects nothing; it merely filters the display on the client side, which is insufficient when there are confidentiality stakes involved.

  • HTTP Referrer = light filtering, easily bypassed, unsuitable for sensitive data
  • Noindex = clear instruction to Google to avoid indexing pages blocked by the referrer
  • Server Authentication = the only real protection for confidential content, blocks Googlebot cleanly
  • Googlebot can arrive with or without a referrer depending on the context of the URL discovery
  • Mixing referrer blocking with standard indexing creates conflicting signals

SEO Expert opinion

Does this recommendation truly reflect observed real-world practices?

Yes, and it's rare enough to be highlighted. We regularly see sites that block pages based on the referrer while keeping them indexable. The result: pages that appear then disappear from the index, crawl rate skyrocketing on inaccessible URLs, skewed acquisition channels in Analytics.

Google’s recommendation is consistent with what we observe: either you accept indexing and make the page accessible, or you noindex properly. Intermediate situations create noise in logs, waste crawl budget, and repeated soft 404 errors.

When is blocking by referrer still relevant?

The referrer still has a use for filtering display without blocking access. For example: displaying a lightbox or interstitial depending on the source, adapting the UI for direct vs referral traffic, or limiting embedding via iframe. It's UX control, not security.

But as soon as it comes to truly preventing access (paid content, member space, confidential documents), the referrer fails. A trainee with Firefox Developer Edition can bypass this in 30 seconds. For these cases, server authentication is the only viable option.

Is noindex enough to protect sensitive content?

No, and that’s where the nuance matters. Noindex prevents indexing, not access. If the URL is discovered (external link, sharing, aggressive scanning), anyone can access it directly if the only filter is the referrer. The content remains exposed.

For truly confidential content, server authentication is non-negotiable. Noindex merely clarifies the SEO stance of a page already blocked on the client side. If the page contains sensitive data, it must return a 401/403 before even serving the HTML [To verify: impact on discoverability of legitimate linked pages].

Practical impact and recommendations

What should you audit on an existing site?

Start by identifying all pages subject to referrer blocking. Look in the server code (Apache .htaccess, Nginx conf, application middleware) for rules that test HTTP_REFERER. Cross-reference with the URLs indexed in Google Search Console to detect inconsistencies.

Then, classify these pages according to their nature: public content but conditionally displayed (lightbox, interstitial), semi-private content (limited access but not confidential), sensitive content (client area, personal data). The strategy differs radically depending on the case.

How to correct a currently indexed page blocked by the referrer?

If the page needs to remain accessible and indexable, remove the referrer block. Either it’s public and you accept direct access, or it’s not and you switch to server authentication. No halfway measures.

If it should not be indexed, add the noindex directive in meta robots and keep the referrer block only if it’s for UX, not for security. Then check in GSC that Google is gradually deindexing these URLs. Crawling will continue, but the index will clean itself.

What critical mistakes must be absolutely avoided?

Never block Googlebot by referrer while hoping for normal indexing. This creates a zombie index: pages discovered via sitemap or internal links, but inaccessible to crawl. Google eventually marks them as errors or deindexes them without warning.

The second trap: using the referrer as the sole protection for paid or confidential content. It’s a sieve. Any scraping tool bypasses this by default. If the content is valuable or needs to remain private, server authentication is not optional.

  • Audit server rules filtering HTTP_REFERER and cross-check with Google index
  • Classify blocked pages: light UX, semi-private, or truly confidential
  • Add noindex to any page blocked by referrer intended to remain out of index
  • Migrate to server authentication (401/403) for any sensitive or paid content
  • Check in GSC for progressive deindexing after adding noindex
  • Never mix referrer blocking with standard indexing for public content
Referrer blocking remains a UX tool, not a security measure. To clarify the SEO stance, noindex filtered pages. To truly protect content, switch to server authentication. These technical choices can quickly become complex on a medium-sized site or one with a heavy history. If the situation requires a thorough audit and a redesign of access architecture, consulting a specialized SEO agency can speed up compliance and avoid costly visibility errors.

❓ Frequently Asked Questions

Googlebot envoie-t-il systématiquement un referer lors du crawl ?
Non. Googlebot peut arriver sans referer (découverte via sitemap, lien externe sans referer transmis, accès direct). Le blocage referer peut donc empêcher l'indexation de façon aléatoire.
Le noindex empêche-t-il l'accès au contenu d'une page ?
Non, il empêche uniquement l'indexation dans les résultats de recherche. N'importe qui connaissant l'URL peut toujours y accéder si aucune authentification serveur n'est en place.
Puis-je bloquer Googlebot par referer tout en indexant la page via sitemap ?
Techniquement oui, mais c'est incohérent. Google découvrira l'URL via sitemap mais ne pourra pas crawler le contenu. La page sera marquée en erreur ou ignorée.
Quelle différence entre 401, 403 et blocage referer côté SEO ?
401/403 sont des codes HTTP serveur qui bloquent proprement Googlebot et empêchent l'indexation. Le blocage referer est côté client, facilement contournable, et crée des signaux ambigus pour le crawler.
Le blocage referer impacte-t-il le crawl budget ?
Oui. Si Googlebot tente de crawler des pages bloquées par referer de façon répétée, il gaspille du crawl budget sur des URLs inaccessibles, au détriment de pages réellement indexables.
🏷 Related Topics
Domain Age & History Content Crawl & Indexing Web Performance

🎥 From the same video 24

Other SEO insights extracted from this same Google Search Central video · duration 47 min · published on 12/01/2016

🎥 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.