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 have two versions of your site, give users the option to voluntarily switch between the mobile version and the desktop version. This can be done by adding a link in the footer of the site pages.
9:33
🎥 Source video

Extracted from a Google Search Central video

⏱ 23:14 💬 EN 📅 02/04/2015 ✂ 9 statements
Watch on YouTube (9:33) →
Other statements from this video 8
  1. 2:12 Faut-il vraiment séparer son site mobile et desktop pour plaire à Google ?
  2. 3:15 Pourquoi les annotations bidirectionnelles mobile-desktop sont-elles encore critiques pour le SEO ?
  3. 5:21 Pourquoi l'en-tête Vary est-elle indispensable quand vous servez du contenu différencié par user-agent ?
  4. 6:50 Faut-il vraiment rediriger vers la version desktop quand la page mobile n'existe pas ?
  5. 8:40 Pourquoi les redirections mobiles incorrectes sabotent-elles votre classement Google ?
  6. 14:25 Le mobile-first fonctionne-t-il vraiment page par page ou site par site ?
  7. 17:16 Comment les redirections incorrectes sabotent-elles votre SEO sans que vous le sachiez ?
  8. 18:36 Les redirections skip de Google vous font-elles vraiment gagner du crawl budget ?
📅
Official statement from (11 years ago)
TL;DR

Google recommends adding a link in the footer that allows users to switch between mobile and desktop versions. This recommendation aims to give an explicit choice, particularly useful for sites with functional differences between versions. Specifically, this concerns legacy architectures or sites with specific needs, as responsive design remains the preferred norm.

What you need to understand

Why does Google emphasize this toggle option between versions?

This recommendation targets sites that still maintain two distinct versions of their pages: a mobile version (often on a subdomain like m.example.com) and a traditional desktop version. Google wants to ensure that the user stays in control and can manually choose which version to view.

Context is important: with widespread mobile-first indexing, Google crawls and indexes the mobile version first. If a desktop user accesses this mobile version by default and has no means of returning to the full version, the experience degrades. The search engine sees this friction as a negative signal.

What types of sites are affected by this recommendation?

We are talking here about “m-dot” architectures (m.example.com) or sites that serve differentiated content based on the device detected on the server side. This configuration was common a few years ago, before responsive design became the norm.

Today, the majority of new sites use a single responsive design. However, some sectors still maintain separate versions: e-commerce with advanced desktop features, media sites with differentiated layouts, or legacy platforms that have not yet migrated. For these specific cases, the toggle link remains relevant.

Where should this toggle link be placed?

Google suggests the footer, a universally accessible area on all pages. The idea is that users should be able to switch versions at any time without searching through hidden menus or buried settings.

The link should be explicit and visible: “Desktop version” or “View full site” from mobile, “Mobile version” from desktop. No ambiguity. Some sites also add contextual detection: if a desktop user forces the mobile display and then navigates, the site retains this choice during the session.

  • Two distinct versions require a manual toggle mechanism
  • The responsive design eliminates this need by serving a single adaptive version
  • The link should be accessible on all pages, ideally in the footer
  • Google sees this option as a positive user experience signal
  • The absence of this link on an m-dot architecture can harm crawling and indexing

SEO Expert opinion

Is this recommendation still relevant for the majority of sites?

Let's be honest: no, not really. The recommendation dates back to a time when m-dot architectures were dominant. Today, it applies to a shrinking minority of sites. Google continues to mention it to cover legacy cases, but most new implementations are done in responsive design.

If you launch a site in 2025, this recommendation probably does not apply to you. However, if you are auditing an old e-commerce or media site that still retains an m-dot version, then yes, check that this link exists and works. The absence of this link equals user friction + potential negative signal for Google. [To verify] in your specific context.

What are the risks of ignoring this recommendation for a separate architecture?

The main risk is a degraded user experience. A desktop user who lands on your mobile version and cannot switch will simply leave. Increased bounce rate, decreased time on site. Google picks up on these behavioral signals.

On the technical side, the absence of a toggle link can also complicate crawling. If Googlebot desktop cannot easily find the desktop version and your mobile version lacks content or features, you lose visibility on certain queries. Additionally, some SEO audit tools will flag you with warnings about the mobile-first configuration if the equivalencies between versions are not clear.

In what cases does this rule not really apply?

If your site is fully responsive with a single URL and a unique DOM that adapts via CSS, this recommendation is moot. No separate versions = no toggle link needed. This is the case for the majority of modern sites built with current frameworks.

Another case: Progressive Web Apps (PWAs) that provide a unified experience regardless of the device. Again, no toggle necessary. Google recognizes these architectures as optimal. On the other hand, if you are using dynamic serving (same URL, different HTML content based on user-agent), the question is approached differently: technically a single URL, but distinct experiences. In this case, a JavaScript toggle may be relevant to allow the user to force one version or the other.

Attention: Do not confuse this recommendation with rel="alternate" and rel="canonical" tags between mobile/desktop versions. These tags are mandatory for any m-dot architecture, while the toggle link is a best UX practice that is highly recommended but not technically blocking for indexing.

Practical impact and recommendations

What should you do if you have an m-dot architecture?

First step: audit all pages to check for the presence of the toggle link. It should be consistent on both desktop AND mobile, not just on the homepage. Many sites forget deep pages or specific landing pages.

Second point: test the link's behavior. It should switch to the equivalent URL, not just to the home page of the other version. If a user is on m.example.com/product-xyz and clicks on “Desktop version”, they should arrive at www.example.com/product-xyz, not www.example.com. Respecting the navigation context is essential.

What technical errors should be avoided during implementation?

The classic mistake: poor user-agent detection. You offer a “Desktop version” link on mobile, the user clicks, but the site re-detects their device and immediately redirects them back to mobile. An endless loop. Solution: store the user's choice in a cookie or session storage and respect it.

Another trap: forgetting rel="canonical" tags. The toggle link does not replace the canonical declaration between versions. Google needs both: tags for crawling/indexing, the link for UX. Do not treat one without the other. Finally, ensure that the link is not hidden in CSS on certain breakpoints or loaded lazily in a faulty manner.

How can I verify that my implementation is compliant?

Use Google Search Console to check for mobile-first indexing errors. If desktop pages are not indexed or if you have warnings about mobile/desktop equivalencies, it is often related to poor version management.

Also test manually on different devices: smartphone, tablet, desktop. Force the display of one version, navigate across multiple pages, ensure the choice persists, and that the URLs are correct. A quick user test often reveals inconsistencies that automated tools miss.

  • Check for the presence of the toggle link in the footer of all pages, not just the home page
  • Ensure that the link points to the equivalent URL, not the home of the other version
  • Implement a persistence mechanism for the user’s choice (cookie, session storage)
  • Maintain the rel="alternate" and rel="canonical" tags between mobile and desktop versions
  • Test the entire user journey on multiple devices to detect redirect loops
  • Regularly audit via Search Console for errors related to mobile-first indexing
The technical management of m-dot architectures with toggle links, canonical tags, and robust user-agent detection can quickly become complex. If you encounter difficulties implementing these recommendations or wish to migrate to a more modern responsive architecture, the support of a specialized SEO agency can prove valuable to avoid costly visibility errors.

❓ Frequently Asked Questions

Le lien de bascule mobile/desktop est-il obligatoire pour le SEO ?
Non, ce n'est pas un critère de ranking direct, mais son absence sur une architecture m-dot dégrade l'expérience utilisateur et peut indirectement nuire via les signaux comportementaux. Google le considère comme une bonne pratique fortement recommandée.
Un site responsive a-t-il besoin d'un lien de bascule ?
Non. Si ton site utilise un design responsive avec une seule version HTML adaptative, il n'y a aucune raison d'ajouter un lien de bascule. Cette recommandation concerne uniquement les architectures avec versions séparées.
Où placer exactement le lien de bascule dans le footer ?
Il doit être visible sans scroll excessif, idéalement dans la première ligne du footer. Libellé clair type « Version desktop » ou « Site complet ». Évite de l'enfouir dans un menu « Paramètres » ou « Préférences » peu accessible.
Le lien de bascule remplace-t-il les balises rel alternate et canonical ?
Absolument pas. Les balises rel alternate/canonical sont essentielles pour que Google comprenne la relation entre versions. Le lien de bascule est un complément UX, pas un substitut technique.
Comment éviter les boucles de redirection après bascule ?
Stocke le choix utilisateur en cookie ou session storage et fais-le primer sur la détection user-agent. Teste rigoureusement le parcours sur plusieurs devices pour identifier les cas où la détection automatique écrase le choix manuel.
🏷 Related Topics
Domain Age & History AI & SEO Links & Backlinks Mobile SEO

🎥 From the same video 8

Other SEO insights extracted from this same Google Search Central video · duration 23 min · published on 02/04/2015

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