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

It is important to correctly configure redirects between the WWW and non-WWW versions of your site to avoid confusion and ensure a consistent user experience.
15:07
🎥 Source video

Extracted from a Google Search Central video

⏱ 56:35 💬 EN 📅 20/07/2016 ✂ 10 statements
Watch on YouTube (15:07) →
Other statements from this video 9
  1. 3:15 La vitesse de chargement est-elle vraiment un facteur de classement déterminant ?
  2. 3:46 PageSpeed Insights suffit-il vraiment à optimiser la vitesse de vos pages ?
  3. 5:41 La compression des ressources améliore-t-elle vraiment le référencement de votre site ?
  4. 7:33 L'optimisation des images booste-t-elle vraiment votre positionnement Google ?
  5. 10:25 L'HTTPS est-il vraiment un facteur de classement pour Google ?
  6. 18:31 Les outils de développeur suffisent-ils vraiment pour évaluer le rendu mobile d'un site ?
  7. 50:05 Faut-il vraiment soumettre un sitemap XML via la Search Console pour que Google indexe correctement votre site ?
  8. 59:55 Faut-il vraiment débloquer les ressources dans robots.txt pour l'indexation ?
  9. 85:18 Comment configurer une page 404 qui améliore vraiment l'expérience utilisateur et le SEO ?
📅
Official statement from (9 years ago)
TL;DR

Google emphasizes the importance of correctly configuring redirects between the WWW and non-WWW versions of a site. Improper configuration creates duplicate content, dilutes PageRank, and disrupts crawl budget. Specifically, choose a canonical version and consistently redirect the other with a 301.

What you need to understand

Why does Google care about the WWW vs Non-WWW distinction?

Google treats www.example.com and example.com as two distinct entities. If both versions respond with identical content without redirection, the engine may index both.

This duplication poses several problems: PageRank gets fragmented between both versions, crawl budget is wasted exploring redundant URLs, and ranking signals (backlinks, anchors, social signals) become dispersed. The result? A measurable loss of visibility.

What does proper configuration technically entail?

A clean configuration relies on three pillars. First, define a unique canonical version (WWW or non-WWW) in Google Search Console. Second, implement a permanent 301 redirect server-side from the non-canonical version to the canonical one.

Third, reinforce this directive with canonical tags on each page to eliminate any ambiguity. These three mechanisms work in synergy: the 301 redirect guides Googlebot, the canonical tag acts as a safety net, and the Search Console declaration confirms your intention.

What are the most common configuration mistakes?

The worst mistake is to leave both versions active without redirection or canonical. Another trap is implementing a JavaScript redirect instead of a server redirect. Google will eventually understand, but with a consolidation delay that can take weeks.

Some sites configure chain redirects (non-WWW → WWW → HTTPS, for example), multiplying unnecessary hops. Others declare one version in Search Console but redirect to the other — guaranteed confusion. Finally, forgetting to update XML sitemaps with the correct canonical URLs delays indexing.

  • Choose a canonical version and stick with it absolutely across all environments
  • 301 redirect server-side (Apache, Nginx, CDN) never in JavaScript or meta refresh
  • Declare the canonical version in Google Search Console and Bing Webmaster Tools
  • Add canonical tags on all pages pointing to the canonical version
  • Update sitemaps exclusively with the canonical URLs

SEO Expert opinion

Does this Google directive truly reflect ground observations?

Yes, this guideline is one of the few instances where Google remains perfectly consistent with what we observe. Sites that leave both versions active experience measurable PageRank dilution. Recent audits consistently show a 15-25% increase in organic traffic after consolidating to a single version.

Google generally consolidates signals to the version it detects as primary (often the one with the most backlinks), but this process takes time. Rather than letting the algorithm guess, it is better to enforce your decision with a clean 301. Sites that wait passively lose weeks of visibility during the floating phase.

Is there any difference in SEO performance between WWW and non-WWW?

No, there is none. Google grants no intrinsic advantage to either version. The choice is based on technical or marketing preferences. WWW simplifies certain DNS configurations (notably to isolate cookies from a naked domain), but the SEO impact is strictly zero.

What matters is absolute consistency. Once a choice is made, all elements (internal backlinks, sitemap file, canonical links, redirects) must point to this single version. A site that alternates between the two in its internal linking creates unnecessary friction for Googlebot.

What special cases complicate this simple rule?

Multi-domain or multi-language sites can sometimes pose issues. If you use geographic subdomains (fr.example.com, uk.example.com), each subdomain must decide on its own WWW/non-WWW management. It is impossible to declare a global rule in Search Console — each property must be configured separately.

Domain migrations add a layer of complexity. If you are moving from old-domain.com to new-domain.com, you must decide before migration which version (WWW or non-WWW) will be canonical on the new domain. Some sites migrate forgetting this detail, creating a double penalty: migration AND duplication. [To be verified]: Google claims to consolidate signals automatically, but ground data shows this consolidation can take 6-8 weeks without explicit redirection.

If you are using a CDN like Cloudflare, ensure that redirect rules are applied before the CDN layer, otherwise some versions may be cached and served without redirection.

Practical impact and recommendations

How can I check my site's current configuration?

Start by manually testing the four variants: http://example.com, http://www.example.com, https://example.com, https://www.example.com. Each non-canonical variant should immediately redirect with a 301 to the canonical version. Use your browser's Developer Tools (Network tab) to verify that the redirect returns an HTTP 301 code, not a 302 or 307.

Next, inspect about ten deep pages (not just the homepage) to ensure that the rule applies everywhere. Also check the canonical tags in the source code: they should uniformly point to the WWW or non-WWW version. Finally, consult Search Console to confirm that the declared property corresponds to the canonical version.

What is the procedure to correct a bad configuration?

If your site currently responds on both versions, first choose which one will be canonical. Deciding factor: look at your backlinks and your Analytics history to see which version naturally receives the most traffic. Once decided, implement the 301 redirects server-side (htaccess file for Apache, Nginx configuration, Cloudflare rules).

Then, add canonical tags on all pages. Update your XML sitemap to list only the canonical URLs, and resubmit it in Search Console. Declare (or re-declare) the property corresponding to the canonical version in Search Console and Bing Webmaster. Monitor coverage reports for 2-3 weeks to ensure that Google correctly consolidates the URLs.

What mistakes should be avoided when ensuring compliance?

Never create chain redirects. If you need to redirect HTTP to HTTPS and non-WWW to WWW, do it in one jump: http://example.com should redirect directly to https://www.example.com, not through an intermediate step. Each additional jump dilutes the transmitted PageRank and slows down crawling.

Avoid JavaScript or meta refresh redirects as well — Google follows them, but with a significant processing delay. Regarding content, don’t forget to update internal links: even if the redirects work, an internal linking structure that heavily points to the wrong version forces Googlebot to follow thousands of unnecessary redirects, wasting your crawl budget.

  • Manually test the 4 variants (HTTP/HTTPS × WWW/non-WWW) and check 301 codes
  • Implement redirects server-side (Apache, Nginx, CDN) never in JavaScript
  • Add consistent canonical tags on all pages
  • Declare the canonical version in Google Search Console and Bing Webmaster Tools
  • Update the XML sitemap with exclusively the canonical URLs
  • Audit and correct internal links to point directly to the canonical version
Managing WWW vs non-WWW may seem trivial, but a poor configuration can fragment your PageRank and slow down your indexing for weeks. Choose a canonical version, redirect the other with a 301 server-side, reinforce with canonical tags, and monitor Search Console to validate consolidation. While these technical optimizations are fundamental, they may require deep expertise to avoid pitfalls (chain redirects, CDN configurations, multi-domain migrations). If your infrastructure is complex or you're lacking internal resources, enlisting a specialized SEO agency can save you time and secure compliant implementation without the risk of regression.

❓ Frequently Asked Questions

Dois-je choisir WWW ou non-WWW pour mon site ?
Aucune des deux options n'a d'avantage SEO intrinsèque. Choisis en fonction de tes contraintes techniques (le WWW facilite certaines configurations DNS) ou de préférences marketing. L'essentiel est d'être cohérent.
Est-ce qu'une redirection 302 fonctionne aussi bien qu'une 301 ?
Non. La 301 est une redirection permanente qui transmet le PageRank, tandis que la 302 est temporaire et ne transmet pas pleinement les signaux. Utilise toujours une 301 pour consolider les versions WWW/non-WWW.
Combien de temps Google met-il à consolider les deux versions après une correction ?
Entre 2 et 8 semaines selon la fréquence de crawl de ton site et le volume d'URLs concernées. Les sites crawlés quotidiennement consolident en 2-3 semaines, les autres peuvent prendre 6-8 semaines.
Faut-il aussi configurer les redirections pour les sous-domaines ?
Oui. Chaque sous-domaine (blog.example.com, shop.example.com) doit faire son propre choix WWW/non-WWW et implémenter ses propres redirections. Google les traite comme des entités distinctes.
Les balises canonical suffisent-elles sans redirection 301 ?
Non. Les canonical sont une directive, pas une règle absolue. Google peut les ignorer s'il détecte des incohérences. Une redirection 301 est la seule méthode garantissant la consolidation, la canonical sert de renfort.
🏷 Related Topics
Domain Name Redirects

🎥 From the same video 9

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