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

For configurations with two separate sites, it is crucial to establish bidirectional annotations between mobile and desktop pages. This means that each mobile page should link to its desktop counterpart using the appropriate canonical and alternate tags.
3:15
🎥 Source video

Extracted from a Google Search Central video

⏱ 23:14 💬 EN 📅 02/04/2015 ✂ 9 statements
Watch on YouTube (3:15) →
Other statements from this video 8
  1. 2:12 Faut-il vraiment séparer son site mobile et desktop pour plaire à Google ?
  2. 5:21 Pourquoi l'en-tête Vary est-elle indispensable quand vous servez du contenu différencié par user-agent ?
  3. 6:50 Faut-il vraiment rediriger vers la version desktop quand la page mobile n'existe pas ?
  4. 8:40 Pourquoi les redirections mobiles incorrectes sabotent-elles votre classement Google ?
  5. 9:33 Faut-il vraiment proposer un lien de bascule mobile/desktop sur son site ?
  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 emphasizes that sites with two distinct versions (mobile and desktop) must implement cross-annotations via canonical and alternate tags. Without this bidirectional setup, the search engine may not grasp the relationship between the versions, directly impacting indexing and ranking. This requirement holds true despite the Mobile-First Index when a separate architecture is maintained instead of a responsive design.

What you need to understand

What do we really mean by bidirectional annotations?

A bidirectional annotation means that each desktop page must link to its mobile counterpart via a link rel="alternate" media="only screen and (max-width: 640px)" tag, while each mobile page must link to the desktop version via a link rel="canonical" tag. This reciprocity allows Google to understand that both URLs serve the same content for different contexts.

The principle is based on a straightforward logic: if you indicate a relationship in only one direction, Google cannot confirm that the target URL recognizes this association. Bidirectionality removes all ambiguity about the intentional structure of the site. Without it, the search engine may treat both versions as duplicate content or completely ignore one of the two.

Why does this setup remain relevant with Mobile-First?

Since the shift to the Mobile-First Index, Google primarily crawls and indexes the mobile version of content. Many SEOs mistakenly conclude that annotations are no longer necessary. This is false as long as two distinct URLs are maintained.

The Mobile-First Index does not eliminate the need to signal relationships between versions. It merely changes which version serves as the reference for indexing. If your architecture separates mobile.example.com from www.example.com, Google still needs to understand this link explicitly. The bidirectional annotation remains the only clear signal to prevent the engine from treating these URLs as independent entities.

What concrete risks arise if annotations are missing or incomplete?

Without correct annotations, several problems routinely arise. Google may index both versions simultaneously, diluting the ranking signals between them. Worse, the engine may arbitrarily choose the desktop version in mobile search results, degrading user experience and Core Web Vitals.

I have observed instances where the absence of an alternate on the desktop side prevented Google from fully discovering the mobile version, even though the site had migrated to a subdomain m.* months ago. Crawling remained stuck on the desktop version, and mobile traffic collapsed. Adding the annotations resolved the issue in a matter of weeks.

  • Canonical mobile to desktop: indicates that the desktop version is the canonical reference
  • Alternate desktop to mobile: signals the existence of a mobile-optimized version
  • Strict matching: each pair of URLs must reference each other, page by page
  • Consistency across the site: a missing annotation on even one page creates an inconsistency that Google detects
  • Regular validation: redesigns or migrations often break these links without immediate notice

SEO Expert opinion

Is this recommendation still technically relevant?

Let’s be honest: maintaining two distinct sites (m.example.com and www.example.com) is a legacy architecture that very few new projects should adopt today. Responsive design addresses these issues at the root by serving the same HTML on a single URL, eliminating the need for annotations.

That said, thousands of legacy sites still operate under this structure, often for technical or organizational reasons that are difficult to overhaul. For them, Google's instruction remains absolutely valid and critical. Ignoring this rule on a two-site setup guarantees measurable indexing problems in Search Console.

What gray areas does Google not clarify here?

The statement remains vague on several important practical points. First, there is no indication of the relative priority between these annotations and other signals (sitemap, internal linking, hreflang). If an annotation contradicts an internal canonical, which takes precedence? [To be verified] on a case-by-case basis through testing.

Secondly, Google says nothing about the expected behavior when mobile and desktop content differs substantially. If the mobile version displays 60% of the desktop content (a common practice to lighten load), should we still point the canonical to desktop? The official answer lacks nuance. In practice, I have seen Google ignore the canonical if the content gap exceeded a non-documented threshold.

Third, no clarification is given on managing URL parameters or session variations. Should desktop.example.com/page?session=abc point to m.example.com/page or m.example.com/page?session=abc? Google’s silence leaves room for interpretation, thus increasing the risk of error.

When does this rule become counterproductive?

If your mobile content is intentionally differently and complementarily designed from the desktop version (for example, a progressive web app with specific features), enforcing a canonical to desktop may hinder. Google may never properly index the unique mobile content. In this scenario, it is better to treat both versions as distinct SEO entities, without cross-annotations.

Similarly, if the mobile version is technically degraded (catastrophic loading times, excessively truncated content), pointing Google to it via alternate may penalize you in the Mobile-First Index. It may be better to temporarily break the bidirectionality while addressing the issues, even if it creates temporary duplicate content. This is a tactical choice that some contexts impose.

Practical impact and recommendations

How to quickly audit the state of your bidirectional annotations?

Start with a Screaming Frog or Oncrawl crawl in mobile and desktop separated modes. Compare the two exports to identify desktop pages that lack an alternate to mobile, and vice versa. A simple Excel VLOOKUP suffices if your site has less than 10,000 pages. Beyond that, automate with a Python script that parses link tags.

Search Console also provides clues through the Coverage section and the mobile indexing report. If you see desktop pages indexed while you have an equivalent mobile version, it is often a symptom of missing annotations. Also, check for hreflang warnings, which sometimes indicate canonical inconsistencies indirectly.

What implementation strategy should you adopt on a large site?

Do not attempt to fix 50,000 pages all at once. Prioritize high-traffic sections and critical commercial pages. First implement on a sample of 100-200 pages, then monitor indexing evolution for 3-4 weeks before generalizing. This progressive approach limits risks if you misconfigured something.

Automate via your CMS or templating system to ensure coherence at scale. Hardcoding annotations in thousands of static HTML pages is unmanageable and inevitably generates errors. If your CMS does not natively support this logic, develop middleware or a custom plugin. It is a worthwhile investment in the long run.

Should you consider migrating to responsive rather than maintaining this complexity?

If your budget and technical roadmap allow it, yes, migrating to a single responsive architecture permanently eliminates this problem. You save the maintenance resources for annotations, simplify the crawl budget, and align your site with modern standards. The SEO benefits of a well-optimized single URL far exceed those of a two-site configuration, even if perfectly annotated.

However, such migration is not trivial. It requires a complete front-end redesign, exhaustive cross-device testing, and meticulous management of 301 redirects. Underestimating this complexity leads to SEO disasters that I have seen destroy 40-50% of organic traffic for months. If you maintain two sites today, it is probably for valid reasons (legacy technical constraints, organizational separation). In that case, optimizing bidirectional annotations remains the best short to medium-term option.

  • Crawl mobile and desktop versions separately to map existing annotations
  • Identify pages without alternate or canonical, prioritizing by traffic volume
  • Check for exact matching: each desktop must point to a mobile that points back
  • Automate implementation via CMS/templating to ensure coherence and scalability
  • Monitor Search Console (Coverage, Mobile Indexing) after deployment on a sample
  • Plan for a responsive migration if resources allow, with rigorous management of 301 redirects
Bidirectional annotations remain a critical technical requirement for any two-site configuration. Their absence generates measurable and immediate indexing issues. If your current architecture imposes this complexity, auditing and correction must be a top priority on your SEO roadmap. These technical optimizations often require specialized expertise and tools: partnering with a specialized SEO agency can significantly accelerate diagnosis and compliance, especially on large-scale sites where a configuration error can be costly.

❓ Frequently Asked Questions

Les annotations bidirectionnelles sont-elles encore nécessaires avec le Mobile-First Index ?
Oui, dès lors que tu maintiens deux URLs distinctes (m.exemple.com et www.exemple.com). Le Mobile-First change quelle version est indexée en priorité, pas la nécessité de signaler explicitement la relation entre les versions.
Que se passe-t-il si j'oublie l'annotation alternate côté desktop ?
Google risque de ne jamais découvrir ou indexer correctement la version mobile. Le crawl reste concentré sur desktop, ce qui pénalise ton site en Mobile-First Index et dégrade l'expérience utilisateur mobile.
Puis-je utiliser un canonical mobile vers mobile au lieu de vers desktop ?
Non, dans une configuration en deux sites, le canonical mobile doit pointer vers la version desktop, qui reste la référence canonique. C'est la balise alternate desktop qui signale l'existence du mobile.
Comment vérifier rapidement si mes annotations sont correctes ?
Crawle ton site avec Screaming Frog en mode mobile et desktop séparément, puis compare les annotations. Vérifie aussi le rapport Indexation mobile dans Search Console pour détecter les incohérences.
Les annotations bidirectionnelles impactent-elles directement le classement ?
Indirectement, oui. Une mauvaise configuration fragmente les signaux de classement entre les deux versions ou empêche Google d'indexer la version optimale, ce qui dégrade mécaniquement tes positions et ton trafic.
🏷 Related Topics
Domain Age & History Crawl & Indexing AI & SEO Images & Videos 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.