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 using a 302 redirect when sending users to a mobile version of your site. If the alternate rel tags are correctly configured, technically, a 302 will not introduce SEO penalties.
45:59
🎥 Source video

Extracted from a Google Search Central video

⏱ 58:29 💬 EN 📅 27/03/2015 ✂ 10 statements
Watch on YouTube (45:59) →
Other statements from this video 9
  1. 1:03 Les fluctuations de classement sont-elles toujours normales selon Google ?
  2. 2:09 Pourquoi vos images disparaissent-elles des résultats après une migration de domaine ?
  3. 4:17 Les EMD sont-ils toujours un levier SEO ou un piège à éviter ?
  4. 6:58 Le linkware est-il vraiment sanctionné par Google ?
  5. 9:05 Faut-il mettre en noindex les pages paginées des catégories ?
  6. 16:05 Faut-il canonicaliser toutes les pages d'une pagination vers la première ?
  7. 30:59 Faut-il vraiment désavouer les backlinks de faible qualité ?
  8. 37:55 Le spam referral peut-il vraiment nuire au classement de votre site ?
  9. 55:59 Le contenu masqué en CSS pénalise-t-il vraiment votre classement Google ?
📅
Official statement from (11 years ago)
TL;DR

Google recommends using a 302 (temporary) redirect when redirecting to mobile versions, stating that no SEO penalty applies if rel=alternate tags are properly configured. This technical approach may seem counterintuitive since 302s traditionally pass less PageRank than 301s. The key lies in the presence of mobile annotations that signal to Google that this is an intentional separate mobile architecture, not duplicate content.

What you need to understand

What’s the distinction between 301 and 302 for mobile?

The reasoning behind this recommendation is based on the temporary nature of mobile redirection. When a desktop user visits your site, they see the desktop version. When a mobile user arrives, they are redirected to m.example.com or example.com/mobile/.

This redirect is not permanent by nature: it depends on the context (type of device). A 302 better reflects this technical reality than a 301, which would imply that the desktop page no longer exists permanently.

How do we prevent duplicate content issues?

The real protective mechanism is the bidirectional rel=alternate and rel=canonical annotations. On the desktop version, you place a link rel="alternate" media="only screen and (max-width: 640px)" href="https://m.example.com/page" that points to the mobile version.

On the mobile version, you place a link rel="canonical" href="https://www.example.com/page" that points back to the desktop version. These signals inform Google that the two URLs form a coherent set, not two competing pages.

Does a 302 actually pass PageRank like a 301?

This is the most counterintuitive point. Traditionally, SEOs know that a 302 passes less link juice than a 301. Google claims here that in this specific context (separate mobile architecture with annotations), the 302 does not introduce a penalty.

Let’s be honest: this statement lacks quantified data. Google doesn’t say, "the 302 passes 100% of PageRank," but rather "it doesn’t introduce a penalty." The nuance matters. In practice, as long as the tags are correct, the observable impact on ranking is zero, which suggests that Google treats these redirects as special cases in its algorithm.

  • Use a 302 for redirects to separate mobile versions (m.example.com)
  • Mandatory implementation of rel=alternate tags (desktop to mobile) and rel=canonical tags (mobile to desktop)
  • Do not mix this logic with standard permanent redirects where a 301 remains the norm
  • Test the configuration with Google Search Console’s Mobile Optimization Tool
  • Monitor indexing: Google must prioritize indexing the desktop version (or mobile-first depending on the site)

SEO Expert opinion

Is this recommendation consistent with real-world observations?

Yes and no. On sites with proper implementation of mobile annotations, using 302 does not lead to observable ranking loss. A/B tests comparing 301 vs 302 in this context show identical outcomes after a few weeks.

But here’s the problem: this neutrality entirely depends on the quality of the rel tags. I’ve seen dozens of sites where the annotations were poorly set up (missing canonical on mobile, alternate pointing to incorrect URLs, incorrect media syntax). In these cases, the 302 exacerbates the chaos because Google hesitates to treat the redirect as temporary or to index both versions.

When does this rule absolutely not apply?

Do not confuse this logic with classical permanent redirects. If you are permanently migrating from http to https, from www to non-www, or from olddomain.com to newdomain.com, you use a 301. Period.

The 302 recommendation only pertains to separate mobile architectures (m.example.com or /mobile/ subdirectories). If you have a responsive site (same HTML/CSS for all devices), this question doesn’t arise: you have no redirects to set up. [To verify]: Google remains vague about hybrid cases where only certain pages have a separate mobile version.

Should you really choose a separate mobile architecture in 2025?

Honestly, no. Unless you have major technical constraints (legacy code, ultra-simplified versions for emerging markets with low bandwidth), responsive design has become the standard for a reason. Less maintenance, no risk of broken annotations, a single URL to promote.

This Google statement remains useful for maintaining the existing: if you manage an old site with m.example.com that performs well, there's no need to panic-migrate. But for a new project, starting with a separate mobile architecture is a questionable technical decision.

Caution: with widespread mobile-first indexing, maintaining two separate versions doubles the potential error surface (mobile loading times, Core Web Vitals, truncated content on mobile, etc.).

Practical impact and recommendations

How can I check if my mobile site is configured correctly?

First step: crawl your site with Screaming Frog or equivalent in mobile user-agent mode. Check that each desktop page with a mobile version has the link rel="alternate" tag with the correct media attribute. Then, crawl the mobile URLs and confirm that each mobile page has a canonical pointing to the corresponding desktop version.

Next, use Google Search Console, Mobile Usability section. Annotation errors often appear in coverage reports. Also test some key URLs with the URL inspection tool to see which version Google is truly indexing.

What errors cause the most issues in practice?

The number one error is asymmetrical annotation: the desktop page points to the mobile version, but the mobile version does not properly link back to the desktop via canonical. Google ends up with conflicting signals and may index both, creating cannibalization.

The second classic trap: unmanaged URL parameters. Your desktop page example.com/product?color=red redirects to m.example.com/product but without the parameter. Result: the annotation doesn’t match exactly, Google gets lost. Ensure parameters are consistent or use rel=alternate tags with full URLs including parameters.

Should you migrate from a separate architecture to responsive?

It depends on the technical cost versus the actual benefit. If your separate mobile site performs well, Core Web Vitals are green, and mobile-first indexing presents no issues (check in Search Console which Googlebot is crawling priority), don’t change a thing.

However, if you need to redesign the site or are experiencing recurring issues with indexing, truncated mobile content, or heavy technical maintenance, take the opportunity to switch to responsive design. The migration would then be done with 301s from m.example.com to example.com, and you remove all unnecessary rel=alternate/canonical annotations.

  • Audit all rel=alternate tags on desktop pages (crawl in desktop user-agent)
  • Ensure each mobile page has a canonical to the corresponding desktop version
  • Test the syntax of the media attribute (usually media="only screen and (max-width: 640px)")
  • Confirm that redirects are indeed 302, not 301
  • Monitor coverage and mobile usability reports in Search Console
  • Document the architecture for future technical interventions
Managing a separate mobile architecture requires constant technical rigor: bidirectional annotations, 302 redirects, monitoring indexing, and URL parameter consistency. These configurations can become complex, especially on large or rapidly evolving sites. If you encounter inconsistencies or wish to migrate to a more sustainable architecture, consulting a specialized SEO agency can save you time and avoid costly visibility errors.

❓ Frequently Asked Questions

Puis-je utiliser une 301 au lieu d'une 302 pour les redirections mobiles sans risque ?
Techniquement oui, si les annotations rel=alternate et canonical sont correctes, mais cela envoie un signal sémantique incorrect (permanence vs temporalité contextuelle). Google recommande la 302 pour refléter la nature conditionnelle de la redirection.
Que se passe-t-il si j'oublie la balise canonical sur la version mobile ?
Google risque d'indexer les deux versions (desktop et mobile) comme des pages distinctes, créant du duplicate content et diluant votre autorité. Les deux URLs peuvent se cannibaliser dans les résultats de recherche.
Les annotations mobiles sont-elles encore nécessaires avec l'indexation mobile-first ?
Oui, si vous maintenez une architecture mobile séparée. L'indexation mobile-first signifie que Google crawle prioritairement votre version mobile, mais les annotations restent indispensables pour lier correctement les deux versions.
Comment savoir si Google indexe ma version mobile ou desktop ?
Dans Google Search Console, utilisez l'outil d'inspection d'URL. La section "Exploration" indique quel user-agent (smartphone ou desktop) a été utilisé pour l'indexation. Depuis l'indexation mobile-first, la plupart des sites sont crawlés en mobile.
Dois-je mettre une redirection 302 même si mon contenu mobile est identique au desktop ?
Si le contenu est strictement identique et que vous gérez quand même deux URLs distinctes, oui. Mais dans ce cas, interrogez-vous sur la pertinence de maintenir cette architecture : un site responsive serait plus simple et moins risqué.
🏷 Related Topics
Content Images & Videos Mobile SEO Redirects

🎥 From the same video 9

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