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

Template changes and migrating to HTTPS can affect Google News traffic if the content is not read correctly by the algorithm. Contact the Google News team if issues arise.
21:23
🎥 Source video

Extracted from a Google Search Central video

⏱ 52:25 💬 EN 📅 06/10/2016 ✂ 22 statements
Watch on YouTube (21:23) →
Other statements from this video 21
  1. 3:39 Le HTTP pénalise-t-il vraiment votre classement dans Google ?
  2. 3:41 HTTPS améliore-t-il vraiment le classement dans Google ?
  3. 6:46 Comment Google choisit-il l'URL canonique quand plusieurs versions pointent vers le même contenu ?
  4. 10:28 Faut-il vraiment maintenir toutes vos anciennes URL accessibles pour le SEO ?
  5. 10:31 Les redirections 301 et 302 transfèrent-elles vraiment tous les signaux de liaison ?
  6. 14:10 La vérification DNS dans Search Console couvre-t-elle vraiment tous vos sous-domaines ?
  7. 18:49 Faut-il vraiment rediriger chaque image en 301 lors d'un passage HTTPS ?
  8. 21:50 Un certificat SSL expiré détruit-il vraiment votre classement Google ?
  9. 22:30 Un certificat SSL expiré pénalise-t-il vraiment votre classement Google ?
  10. 23:35 Penguin en temps réel : vos actions de netlinking impactent-elles vraiment plus vite vos rankings ?
  11. 23:59 Faut-il encore utiliser le fichier Disavow en SEO ?
  12. 24:00 Faut-il encore désavouer les mauvais liens si Penguin dévalue automatiquement en temps réel ?
  13. 26:04 L'optimisation mobile impacte-t-elle vraiment seulement le classement mobile ?
  14. 26:57 Faut-il vraiment utiliser le nofollow sur vos liens internes ?
  15. 27:36 Le nofollow sur les liens internes améliore-t-il vraiment le référencement ?
  16. 27:43 Google traite-t-il vraiment les sous-domaines comme des sites séparés ?
  17. 28:26 Le lazy loading sabote-t-il l'indexation de vos images dans Google ?
  18. 29:32 Faut-il isoler vos sous-domaines de test sur un hébergement distinct pour protéger votre SEO ?
  19. 31:23 Faut-il vraiment structurer vos URL pour Google News avec des répertoires spécifiques ?
  20. 41:34 Google utilise-t-il vraiment deux algorithmes différents pour mobile et desktop ?
  21. 43:58 Comment garantir la cohérence entre les versions AMP et desktop sans pénalité algorithmique ?
📅
Official statement from (9 years ago)
TL;DR

John Mueller confirms that template changes and HTTPS migrations can severely impact Google News traffic if the algorithm fails to read the content correctly. The issue doesn't stem from the migration itself but from technical errors that block content extraction by the News crawler. If you experience a sudden drop, contact the Google News team directly rather than waiting for a natural recovery.

What you need to understand

Does Google News handle content differently than regular search?

Yes, and this is exactly where the issue arises. The Google News algorithm uses specific parsers to extract the structural elements of an article: title, lead, body, publication date, author. Unlike standard crawling, which adapts relatively well to markup variations, the News crawler is stricter about certain expected patterns.

When you modify a template or switch to HTTPS, you may potentially alter the HTML structure, schema.org tags, canonical URLs, and redirects. If any of these elements break the reading chain, the content becomes invisible to the News algorithm even if it remains perfectly crawlable in standard organic search.

What specifically causes this loss of readability?

Common causes include poorly tagged ArticleBody tags post-migration, missing publication dates or dates in an unrecognized format, content loaded with asynchronous JavaScript that the News crawler cannot render, or incorrectly configured 301 redirects that break historical signals.

Switching to HTTPS sometimes introduces mixed content warnings that block the full rendering of the page. Other times, it's a change in URL architecture that dilutes the algorithm's recognition of News sections. The issue is rarely isolated; it’s often a domino effect.

Why does Mueller recommend contacting the News team directly?

Because Google News has a dedicated team that is distinct from regular Search Console. Parsing issues can sometimes be invisible in standard coverage reports. You'll see your pages indexed and crawled, but News traffic collapses without any visible alerts.

Direct contact allows for a manual diagnosis by engineers who can precisely identify which structural element is blocking readability. Waiting for a natural recovery can take weeks or may never happen if the error persists in the code.

  • The Google News crawler is more demanding about HTML structure than the organic search crawler
  • HTTPS migrations and template changes frequently break News content signals without affecting standard indexing
  • Contacting the Google News team is recommended as soon as a traffic drop is observed post-migration
  • Parsing issues are rarely visible in standard Search Console reports
  • A minor technical error (poorly formatted date, incomplete schema.org) can completely block content extraction

SEO Expert opinion

Does this recommendation truly reflect on-the-ground observations?

Absolutely. I've seen media outlets lose 60 to 80% of their News traffic within 48 hours after replatforming, without any alerts in Search Console. The diagnosis is complex because the site continues to be crawled normally, pages remain indexed, but the News flow dries up abruptly.

The typical issue: a CMS generating Unix timestamp publication dates instead of a readable ISO format, or a missing article:published_time in the Open Graph meta tags. Google News does not flag these errors as coverage problems; it simply ignores the content. [To be verified]: the exact frequency with which the News team responds to inquiries via the contact form remains unclear, some publishers report delays of several weeks.

What are the most common errors post-migration?

The first pitfall: chained 301 redirects. HTTP to HTTPS, then www to non-www, then old URL to new structure. The News crawler often gives up after the second redirect. The result: historical content disappears from the flow even if new publications pass through.

The second classic error: loading the article body with lazy loading or via a too-late React/Vue hydrate. The News crawler takes a quick snapshot; if the content is not in the initial DOM, it will not be extracted. A third source of problems: paywall scripts that hide text before the algorithm can read it, especially if the schema.org markup points to hidden content.

When does this rule not apply?

If your site is not indexed in Google News as an approved source, these considerations are irrelevant. Standard organic traffic from universal search follows different rules, less sensitive to structural details. You can migrate to HTTPS without visible impact if you're not dependent on the News flow.

Another case: sites that publish evergreen content rather than hot news. Google News favors freshness and velocity; if your content is not meant to appear in the News tab, parsing requirements are less stringent. But let's be honest, if you have a publisher center set up and are targeting this channel, every detail counts.

Warning: Do not confuse a drop in News traffic with an algorithmic penalty. The signals are different. A penalty affects the entire domain, while a parsing error in News impacts only this channel without affecting standard organic search or Google Discover.

Practical impact and recommendations

What should you check before a HTTPS migration or a template change?

First, audit your schema.org Article markup: ensure that headline, datePublished, dateModified, author, and publisher are present and valid. Use Google's rich results test to detect errors before going live. A missing field can be enough to break readability.

Next, make sure that the main content is rendered server-side, not just client-side JavaScript. Test with a fetch as Google or a simple curl: the full article text should appear in the source HTML. If you are using a modern framework (Next.js, Nuxt), prioritize SSR or SSG for article pages.

How do you diagnose a drop in News traffic post-migration?

First, isolate the traffic source in Analytics: Google News vs standard organic search. If only the News channel drops, it is indeed a parsing issue. Compare the URLs that continue to perform with those that have lost visibility, identifying differences in HTML structure or redirects.

Use the URL Inspection tool in Search Console on a few recent articles: check that the crawled rendering displays the full text, dates, and author. If elements are missing in the crawled version but are visible during normal navigation, it's a red flag. Then, contact the Google News team via the Publisher Center with specific examples of impacted URLs.

What errors should you absolutely avoid during replatforming?

Never implement temporary 302 redirects during migration, even for testing. Google News interprets them as ephemeral content and can deindex the flow. Use permanent 301s from the start, with precise 1:1 mapping between old and new URLs.

Also avoid modifying both the URL structure and the HTML template simultaneously. Break down the changes: first migrate to HTTPS without altering the URLs or markup, stabilize traffic, then change the template. Changing multiple variables at the same time makes diagnosis impossible if something goes wrong.

  • Audit the schema.org Article markup with the rich results test before any migration
  • Verify that the main content is rendered server-side, not just in asynchronous JavaScript
  • Implement permanent 301 redirects with 1:1 mapping, never 302s or multiple chains
  • Test the crawled rendering using the URL Inspection tool on a sample of recent articles
  • Monitor Google News traffic separately from standard organic traffic in Analytics
  • Prepare a list of impacted URLs with before/after screenshots for contacting the News team if needed
These technical optimizations require specialized expertise in crawl, rendering, and structured data. If you lack internal resources to thoroughly audit each layer, a specialized SEO agency in technical SEO for media can assist you in diagnosis and compliance, especially during high-traffic migration.

❓ Frequently Asked Questions

Un changement de template peut-il impacter Google News sans affecter le trafic organique classique ?
Oui, totalement. Le crawler Google News utilise des parsers spécifiques plus exigeants sur la structure HTML et le schema.org. Votre contenu peut rester indexé normalement en recherche organique tout en devenant illisible pour l'algorithme News.
Comment contacter l'équipe Google News en cas de problème post-migration ?
Passez par le Publisher Center si vous êtes une source approuvée, ou utilisez le formulaire de contact dédié aux éditeurs News. Préparez des exemples précis d'URLs impactées et des screenshots du before/after pour accélérer le diagnostic.
Combien de temps faut-il pour récupérer le trafic News après correction d'une erreur technique ?
Ça varie de quelques jours à plusieurs semaines selon la nature du problème et la rapidité de recrawl. Si l'équipe Google News intervient manuellement, la récupération peut être plus rapide qu'un recrawl organique classique.
Les redirections HTTPS peuvent-elles casser les signaux historiques pour Google News ?
Oui, surtout si vous enchaînez plusieurs redirections ou utilisez des 302 temporaires. Google News est sensible à la dilution des signaux via les chaînes de redirections. Privilégiez toujours un mapping 1:1 en 301 permanent.
Le balisage schema.org est-il obligatoire pour apparaître dans Google News ?
Pas strictement obligatoire, mais fortement recommandé. Un schema.org Article complet et valide facilite l'extraction du contenu par le crawler News. Sans balises structurées claires, le risque d'erreur de parsing augmente significativement.
🏷 Related Topics
Algorithms Content Discover & News HTTPS & Security Redirects

🎥 From the same video 21

Other SEO insights extracted from this same Google Search Central video · duration 52 min · published on 06/10/2016

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