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

Google recommends that in the absence of a mobile version of a page, the desktop version should be shown instead of redirecting mobile users to the mobile homepage, in order to avoid a confusing user experience.
9:23
🎥 Source video

Extracted from a Google Search Central video

⏱ 57:22 💬 EN 📅 30/10/2015 ✂ 10 statements
Watch on YouTube (9:23) →
Other statements from this video 9
  1. 5:49 L'en-tête HTTP Vary est-il vraiment inutile pour le SEO mobile ?
  2. 11:21 Pourquoi les redirections mobiles cassent-elles encore votre SEO ?
  3. 19:14 Les redirections 301 suffisent-elles vraiment à sauver vos rankings lors d'un changement de domaine ?
  4. 23:38 Les interstitiels mobiles sont-ils vraiment un handicap pour votre SEO ?
  5. 38:06 Les données structurées JavaScript sont-elles vraiment indexées par Google ?
  6. 43:24 Faut-il vraiment dupliquer vos données structurées entre mobile et desktop ?
  7. 44:44 Comment éviter que le contenu dupliqué sabote votre indexation avec la balise canonical ?
  8. 47:37 Pourquoi Google n'indexe-t-il pas toutes les URLs de votre sitemap ?
  9. 50:46 Google a-t-il vraiment besoin d'optimisations spécifiques pour la recherche vocale ?
📅
Official statement from (10 years ago)
TL;DR

Google has made it clear: if a page doesn't have a mobile version, serve the desktop version to mobile users instead of directing them to the mobile homepage. This blind redirection ruins user experience and sends a negative signal to the engine. In practice, this means it's better to show a poorly optimized desktop page for mobile than to redirect users and confuse them.

What you need to understand

Why does Google emphasize this seemingly obvious point?

The situation in question pertains to dual configuration sites: one desktop version (www.site.com) and a separate mobile version (m.site.com). When a mobile user lands on a desktop URL that has no mobile equivalent, some sites automatically redirect to the mobile homepage.

This reflex, which seems logical, creates a sharp disruption in the user journey. The user is searching for a specific product, clicks on a result, and ends up on the homepage. They have to restart their navigation from scratch. Google considers this experience problematic enough to officially advise against it.

The recommended alternative is to serve the desktop version as is to mobile users. Certainly, the ergonomics won't be optimal — small text, unsuitable navigation, manual zoom possible — but the user gains access to the content they were seeking.

What happens on the crawl and indexing side?

Googlebot mobile follows redirects like a real user. If every specific desktop URL redirects to the mobile homepage, the bot detects a structural inconsistency: dozens or hundreds of URLs all point to the same destination.

This pattern resembles a technical flaw or, worse, an attempt to hide content. The engine may then devalue the mobile site or ignore certain rel="alternate" annotations. Consistency between desktop and mobile versions becomes opaque.

In what technical context does this recommendation still apply?

Let's be frank: M-dot sites (m.site.com) are becoming obsolete. Responsive design has replaced this dual architecture for years. However, Google continues to publish guidelines on the topic because thousands of legacy sites are still operating on this model.

If you manage a recent site, this recommendation probably doesn't apply to you. However, if you're inheriting an old e-commerce site or a media portal launched before 2015, you may encounter this configuration. Automatic redirects to the mobile homepage are often hard-coded in .htaccess or in middleware.

  • M-dot Architecture: two distinct sites, two structures, manual management of URL equivalences
  • Default Redirects: when the mobile URL doesn’t exist, automatic redirect to m.site.com
  • Negative UX Signal: the user loses the sought content, immediate bounce rate
  • Google's Alternative: display the non-responsive desktop version instead of redirecting
  • Edge Case: if the desktop page is completely unusable on mobile (Flash, heavy PDFs), redirecting to an explanatory page is still preferable to a blank screen

SEO Expert opinion

Does this statement really reflect observed on-ground practices?

Yes, and it is even a rule that Google has applied with consistency for years. Audits of M-dot sites consistently show that massive redirects to the mobile homepage degrade performance in Search Console: declining click-through rates, unindexed mobile pages, mismatched annotation errors.

What is more subtle is that Google doesn't directly penalize these redirects. The engine simply observes a user experience disruption that can be measured: low time spent, immediate returns to SERPs, lack of interaction. These behavioral signals are enough to demote the site without any manual filter intervening.

What nuances should be applied in real cases?

Google's recommendation assumes that the desktop version remains functionally usable on mobile. If your desktop page contains Flash, incompatible dropdown menus, or loads 8 MB of resources, displaying this version to a 4G user is worse than a redirect.

In these edge cases, it’s better to create a mobile interstitial page explaining that the content isn't available in mobile format and offering a link to the desktop version. This transparent approach is better than a harsh landing on the homepage. [To verify]: Google has never published quantified data on the actual impact of these redirects vs. desktop display on mobile ranking.

In what cases does this rule absolutely not apply?

If your site is in responsive design (one URL, CSS/JS adaptation according to viewport), this issue simply doesn't exist. The URL is the same regardless of the device, meaning no possible redirection.

Similarly, for Dynamic Serving sites (same URL, different HTML content depending on User-Agent): it's the server that decides what to display, with no redirects on the client side. Google's recommendation strictly concerns M-dot architectures with distinct URLs.

If you're migrating an M-dot site to responsive design, do not abruptly remove mobile URLs. Implement permanent 301 redirects for each URL m.site.com/page to www.site.com/page. Otherwise, you lose the mobile indexing history and backlinks pointing to m.site.com.

Practical impact and recommendations

What should I do if my site is still in M-dot architecture?

First step: audit existing redirects. Take 50 random desktop URLs, test them with a mobile User-Agent (Chrome DevTools, responsive mode). If more than 10% redirect to the mobile homepage, you have a problem.

Next, modify the redirect logic. The rule should be: if a mobile equivalent exists, redirect to it; otherwise, serve the desktop version as is. Technically, this involves maintaining an up-to-date desktop URL ↔ mobile URL mapping or completely disabling the default redirect.

What critical mistakes should be avoided during correction?

Do not implement a complex conditional redirect that tests for the existence of the mobile page in real-time. This adds server latency and can create timeouts. It’s better to generate a static match file and consult it in memory.

Avoid simply removing all redirects without warning: if mobile URLs exist and function, removing them disrupts the experience of users who have bookmarked m.site.com. The clean solution is a full migration to responsive, not a fix of .htaccess rules.

How can I check if the configuration is correct after correction?

Use the Search Console, mobile Coverage section. Google explicitly reports problematic mobile redirects and desktop pages served to mobile. If you see warnings like "Incorrect Redirect" or "Page not available on mobile", that’s where it is.

Also test with a mobile crawler (Screaming Frog configured as Googlebot Smartphone). Verify that desktop URLs without a mobile equivalent return a 200 code (not 302 or 301) when crawled with a mobile User-Agent. The HTML content must be that of the desktop version, possibly with a viewport meta tag to improve rendering.

  • Audit current mobile redirects on a representative sample of URLs
  • Disable default redirects to the mobile homepage if no equivalent exists
  • Maintain an accurate mapping of desktop ↔ mobile matches
  • Check HTTP codes returned for mobile User-Agent (200 expected, not 301/302)
  • Monitor Search Console for redirect errors reported by Google
  • Plan a migration to responsive design if the M-dot site becomes unmanageable
These mobile configuration optimizations may seem straightforward in theory, but they touch on various technical layers: server rules, application logic, management of rel="alternate" annotations. If your infrastructure is complex or if you manage thousands of pages, a configuration error can impact the indexing of entire sections of the site. In these cases, engaging a specialized SEO agency can secure the migration and avoid traffic losses.

❓ Frequently Asked Questions

Si je redirige vers l'accueil mobile, est-ce que Google pénalise mon site ?
Google ne pénalise pas directement, mais constate une dégradation des signaux utilisateur (rebond, temps passé). Cela suffit à déclasser le site naturellement sans filtre manuel.
Un site responsive est-il concerné par cette recommandation ?
Non. Si votre site utilise une seule URL avec adaptation CSS/JS, cette problématique n'existe pas. La recommandation vise uniquement les architectures M-dot (URLs mobiles distinctes).
Que faire si la page desktop est techniquement inutilisable sur mobile (Flash, PDF lourd) ?
Créez une page mobile interstitielle expliquant la situation et proposant un accès à la version desktop. C'est plus transparent qu'une redirection vers l'accueil.
Comment vérifier si mon site redirige massivement vers la home mobile ?
Testez un échantillon d'URLs desktop avec un User-Agent mobile (DevTools Chrome) et repérez les redirections vers m.site.com. La Search Console signale aussi ces erreurs dans la section Couverture mobile.
Faut-il supprimer complètement les URLs m.site.com lors d'une migration responsive ?
Non, mettez en place des redirections 301 permanentes de chaque URL mobile vers son équivalent responsive. Sinon vous perdez l'historique d'indexation et les backlinks mobiles.
🏷 Related Topics
Domain Age & History Mobile SEO Redirects

🎥 From the same video 9

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