What does Google say about SEO? /
Quick SEO Quiz

Test your SEO knowledge in 3 questions

Less than 30 seconds. Find out how much you really know about Google search.

🕒 ~30s 🎯 3 questions 📚 SEO Google

Official statement

Implementing HTTP to HTTPS redirects is still recommended even if it wasn't done initially. It's good practice for users. The visible SEO effect will likely be minimal if the site is already well-established, but HSTS should also be configured.
🎥 Source video

Extracted from a Google Search Central video

💬 EN 📅 23/04/2021 ✂ 15 statements
Watch on YouTube →
Other statements from this video 14
  1. Une redirection 301 suffit-elle vraiment à imposer la canonique à Google ?
  2. Les liens sur forums et sites UGC ont-ils encore une valeur SEO ?
  3. Les paramètres d'URL multiples sont-ils vraiment un risque de contenu mince ?
  4. Les Core Web Vitals mesurent-ils vraiment ce que vos utilisateurs voient ?
  5. Faut-il vraiment réécrire toutes ses fiches produits pour bien ranker ?
  6. Les tests A/B en JavaScript peuvent-ils déclencher une pénalité pour cloaking ?
  7. Pourquoi le nombre de pages dans les rapports Core Web Vitals de Search Console fluctue-t-il sans raison apparente ?
  8. Pourquoi faut-il attendre 28 jours pour voir l'impact SEO de vos optimisations Core Web Vitals ?
  9. Faut-il vraiment ignorer les données de laboratoire pour optimiser ses Core Web Vitals ?
  10. Faut-il vraiment éviter de modifier fréquemment son site pour ne pas perdre son classement ?
  11. Google réécrit-il vos balises title et meta description à chaque requête ?
  12. Pourquoi Google crawle-t-il vos images sans extension deux fois avant de les indexer ?
  13. Un site d'une seule page peut-il vraiment se classer dans Google ?
  14. Pourquoi la canonicalisation peut-elle détruire votre visibilité sur les requêtes de longue traîne ?
📅
Official statement from (5 years ago)
TL;DR

Mueller confirms that HTTP to HTTPS redirects remain recommended even if they were not implemented from the start. For an established site, the SEO impact will be marginal—the main benefit has already been gained by active HTTPS. The real action? Configure HSTS to lock in browser-side security and avoid user alerts.

What you need to understand

Why this statement now that HTTPS has become the norm?

Since 2014, Google has pushed HTTPS as a ranking signal, and Chrome has displayed aggressive alerts on non-secure sites since 2018. In 2023, over 95% of web traffic is routed through HTTPS. So why is Mueller revisiting redirects in 2024?

Because hundreds of thousands of websites have migrated to HTTPS without ever implementing permanent 301 redirects from HTTP to HTTPS. They simply activated the SSL certificate, leaving two versions of the site coexisting—a UX and SEO flaw. The statement targets those sites that carry a historical technical debt.

What is the real SEO impact of adding these redirects late?

Mueller is clear: if your site is “already well-established”, the visible SEO effect will be “probably minimal.” In other words: don’t expect a traffic surge. The HTTPS signal is already active, Googlebot is already crawling the secure version, PageRank is flowing.

What redirects fix is the residual fragmentation: external links still pointing to HTTP, outdated user bookmarks, old social shares. Without redirection, these accesses generate errors or ghost duplicates. The benefit is therefore more technical and UX-oriented than purely ranking-related.

What is HSTS and why does Mueller mention it at the end?

HTTP Strict Transport Security is a response header that tells browsers to never load the site over HTTP, even if the user explicitly types http:// in the address bar. The browser automatically forces the HTTPS version.

It is an additional layer of security that eliminates man-in-the-middle attacks during the first connection. For Google, it is also a signal of technical maturity: a site that configures HSTS shows that it takes security seriously beyond just having an SSL certificate. Mueller mentions it as a logical extension of the HTTPS migration—not a bonus, a necessity if you want to be consistent.

  • HTTP → HTTPS redirects remain a good practice even if added late, but the direct SEO impact will be low on an established site.
  • The main benefit is UX and technical consolidation: eliminating duplicates, capturing residual HTTP traffic, avoiding user errors.
  • HSTS must be configured as a complement to force the HTTPS connection on the browser side and strengthen security.
  • Googlebot already prioritizes the HTTPS version if it exists—the redirects will not fundamentally change its crawl behavior.
  • This statement targets sites that have migrated to HTTPS without ever cleaning up orphan HTTP accesses.

SEO Expert opinion

Is this statement consistent with real-world observations?

Absolutely. We regularly see HTTPS-migrated sites that leave HTTP accessible—either by oversight or because "it works that way." The result: two URLs per page in the logs, residual duplication in Search Console, and sometimes backlinks still pointing to HTTP without being redirected. The direct SEO impact is indeed minimal if Google has already switched to HTTPS as the canonical version.

But saying "minimal" doesn't mean "none." We have observed cases where adding redirects cleaned up wasted crawl budget on ghost HTTP URLs, especially on large e-commerce sites with thousands of SKUs. Crawling becomes more efficient, and ranking signals concentrate on one version. It’s marginal but measurable with volume.

What does "probably minimal SEO effect" really mean?

It’s a deliberately cautious phrasing. “Probably” = Google does not commit. “Minimal” = do not expect gains in rankings. What Mueller doesn’t say is that the impact depends on the site context.

On a small site with 50 pages and few external backlinks, adding redirects changes absolutely nothing. On a media site with 10 years of history and thousands of links pointing to HTTP, the effect may be more tangible—not in direct ranking but in authority consolidation and crawling efficiency. [To verify]: Google does not provide any quantified metrics to assess this "minimal."

Is HSTS really necessary or just a "nice to have"?

HSTS is not optional if you want to be rigorous. Without it, a user typing http://yoursite.com in Chrome will first attempt an HTTP connection and then be redirected to HTTPS. That millisecond can be exploited by a MITM attack. With HSTS active, the browser forces HTTPS immediately, without ever touching HTTP.

For SEO, HSTS is not a confirmed ranking signal—but it is a technical quality indicator that Google values indirectly. A site that configures HSTS, preload, CSP, etc., sends a maturity signal. It’s a detail that can make the difference in ultra-competitive sectors where every micro-optimization counts.

Attention: If you enable HSTS with the preload directive, you commit to remaining in HTTPS permanently. Reverting back requires removing the domain from the preload list of browsers—a long and complex process. Only enable it if you are sure of your migration.

Practical impact and recommendations

What should you actually do if you haven't set up redirects yet?

The first step: audit residual HTTP accesses. Check in Search Console if any HTTP URLs are still indexed or crawled. Analyze your server logs to identify the volume of HTTP requests—if it’s 0.1% of traffic, it’s negligible; if it’s 10%, you're losing users and crawl budget.

Next, implement permanent 301 redirects from http://example.com/* to https://example.com/*. Set this up at the server level (Apache, Nginx, Cloudflare) or via a plugin if you are on WordPress. Test with curl -I to ensure that the redirect returns a 301 status code, not a temporary 302.

How to correctly configure HSTS without breaking your site?

Add the Strict-Transport-Security header in your web server configuration. Start with a short duration (e.g., max-age=86400, or 24 hours) to test. If everything works after a few days, move to a year (max-age=31536000).

Only enable includeSubDomains if ALL your subdomains are secured in HTTPS—otherwise you will break access to services like webmail.example.com if it’s still in HTTP. And only add preload if you are ready to remain in HTTPS permanently and submit your domain to hstspreload.org.

What mistakes should you avoid when setting up redirects?

Don’t create redirect chains: http://example.com → https://www.example.com → https://example.com/page. Each hop dilutes PageRank and slows down crawling. Redirect directly from HTTP to the final canonical version in one go.

Avoid temporary 302 redirects—they don’t transfer authority reliably. Always use permanent 301s. And test on a sample of URLs before deploying at scale: a regex error in the redirect rule can break an entire site.

  • Audit residual HTTP URLs in Search Console and server logs
  • Implement permanent 301 redirects from http:// to https:// at the server level
  • Configure the HSTS header with max-age=31536000 after a testing phase
  • Ensure that includeSubDomains is only enabled if all subdomains are secured
  • Test redirects with curl -I to confirm 301 status code
  • Monitor logs for 7 days after deployment to detect any errors
If your site has been in HTTPS for years without HTTP redirects, the SEO impact of adding them will be marginal—but it’s a technical debt to settle. The real gain is in UX, security, and technical consistency. HSTS should be configured alongside to lock in the secure connection. These technical optimizations, though critical, can be complex to implement correctly without creating regressions—between managing subdomains, server rules specific to your stack, and large-scale regression testing. If you lack internal resources or if your infrastructure is heterogeneous, engaging a specialized technical SEO agency can help you avoid costly mistakes and ensure a clean migration.

❓ Frequently Asked Questions

Est-ce que les redirections HTTP vers HTTPS améliorent le ranking directement ?
Non. Si votre site est déjà en HTTPS et bien établi, ajouter ces redirections n'aura probablement aucun impact visible sur vos positions. Le bénéfice est technique et UX, pas un signal de ranking en soi.
Qu'est-ce que HSTS et pourquoi Mueller le mentionne ?
HSTS (HTTP Strict Transport Security) est un header qui force les navigateurs à toujours charger votre site en HTTPS, même si l'utilisateur tape http:// dans la barre d'adresse. C'est une couche de sécurité supplémentaire recommandée une fois la migration HTTPS faite.
Si mon site est déjà en HTTPS depuis 5 ans, dois-je quand même ajouter les redirections HTTP ?
Oui, si elles ne sont pas en place. Même si l'impact SEO sera minime, vous éliminez les accès HTTP résiduels (liens externes anciens, signets utilisateurs) et vous évitez les erreurs ou doublons fantômes.
Quel code de redirection utiliser : 301 ou 302 ?
Toujours 301 (redirection permanente). Un 302 indique une redirection temporaire et ne transmet pas l'autorité de manière stable. Les redirections HTTP vers HTTPS sont définitives par nature.
HSTS peut-il casser mon site si je le configure mal ?
Oui. Si vous activez includeSubDomains alors que certains sous-domaines sont encore en HTTP, ils deviendront inaccessibles. Testez avec une durée courte (max-age=86400) avant de passer à un an. N'activez preload que si vous êtes certain de rester en HTTPS définitivement.
🏷 Related Topics
HTTPS & Security AI & SEO Pagination & Structure Redirects

🎥 From the same video 14

Other SEO insights extracted from this same Google Search Central video · published on 23/04/2021

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