Skip to content
AscendQ.ca — Websites, Apps & SEO Systems

Indexing & SEO 9 min read

AMP Pages in 2026: Why "None Detected" Is Good News (and How to Remove Them Safely)

Google Search Console → AMP
No AMP pages detected on this site.
(old tutorials: "You MUST add AMP for mobile rankings!")

AMP (Accelerated Mobile Pages) was Google's 2016 answer to a real problem: the average mobile page shipped megabytes of JavaScript and took ten seconds to load. AMP forced a stripped-down HTML subset, served from Google's own cache, and — this was the hook — was REQUIRED to appear in the Top Stories carousel. For a few years, "add AMP" was legitimately good advice for publishers.

That world is gone. In the 2021 Page Experience update Google removed the AMP requirement from Top Stories, dropped the lightning-bolt AMP badge from results, and moved ranking to Core Web Vitals measured on YOUR pages — format-agnostic. Since then the industry has been steadily removing AMP, and publishers who dropped it report no traffic loss. Yet the "you must add AMP" advice still circulates, because a lot of SEO guidance is repeated long after the reason for it expired. This post is the honest 2026 status: what AMP earns you now (nothing), what it costs (plenty), and — if you already run it — how to remove it without SEO damage.

You're In The Right Place If…

  • Search Console shows "No AMP pages" and you're wondering if that's hurting mobile rankings
  • An old audit, plugin, or agency deliverable recommends adding AMP versions of every page
  • You run AMP already and see duplicate URLs (/page/ and /page/amp/) competing in reports
  • Analytics is split or misattributed between your domain and Google's AMP cache

The Evidence: What Changed And When

  • 2021 — Page Experience update: AMP no longer required for Top Stories; any page passing Core Web Vitals qualifies. The AMP badge disappears from mobile results
  • 2021 onward — Google confirms AMP is not a ranking signal; Core Web Vitals from real users (CrUX data) is what counts, regardless of how you achieve it
  • Major publishers (news sites were AMP's core audience) begin removing AMP; follow-up reporting shows no ranking or traffic penalties for leaving
  • Google's own products de-emphasize it: Search Console keeps the AMP report only for sites that still serve AMP; "no AMP pages detected" carries zero penalty

What AMP Actually Costs You In 2026

AMP is not free even when it works. Every page exists twice (the duplicate problem below). Your analytics splits across your domain and Google's AMP cache, misattributing sessions. Forms, consent banners, and custom JavaScript are restricted to AMP's component library. And every template change must be made twice and kept in sync — forever. That is a permanent maintenance tax purchased for a benefit that no longer exists.

The deeper point: AMP was a crutch for slow architecture. If your site is built fast — pre-rendered HTML, minimal JavaScript, passing Core Web Vitals — you already have everything AMP was simulating, without the parallel copy. A static-first site IS the stripped-down version. Making a stripped-down version of it is redundant by definition.

The Duplicate-Content Trap (why Your Instinct Is Right)

AMP works by publishing a parallel copy of every page: /page/ and /page/amp/ (or ?amp=1). The only thing standing between that and a classic duplicate-content mess is a strict two-way handshake: the AMP copy must carry rel="canonical" pointing at the original, and the original must carry rel="amphtml" pointing at the AMP copy. Both directions, on every page, forever.

Every AMP site with "duplicate without user-selected canonical" warnings got that pairing wrong somewhere — a template that dropped the canonical, a plugin update that changed URL patterns, a migration that redirected one side but not the other. If you have ever audited duplicate-content problems (www vs non-www, staging domains, parameter URLs), you already know the rule: every additional copy of your content is a liability you must actively manage. AMP institutionalizes one.

<!-- the mandatory two-way handshake AMP requires on EVERY page -->

<!-- on the regular page -->
<link rel="amphtml" href="https://yoursite.com/page/amp/">

<!-- on the AMP copy -->
<link rel="canonical" href="https://yoursite.com/page/">

If You Still Run AMP: The Safe Removal Procedure

Do not just delete the AMP templates — orphaned AMP URLs that Google has indexed will 404 and linger in reports for months. Remove the relationship first, then the pages, in this order:

  • Remove every rel="amphtml" link from your regular pages (in WordPress this usually means deactivating the AMP plugin's output, not yet deleting it) — this tells Google the pairing is over
  • 301-redirect every AMP URL to its canonical page (/post/amp/ → /post/). A redirect preserves any link equity and cleanly removes the duplicate. Most AMP plugins have a built-in redirect option for exactly this
  • Confirm your regular pages pass Core Web Vitals on mobile (PageSpeed Insights) — this is what AMP was masking; if they fail, fix the real problem now
  • In Search Console, watch the AMP report drain over the following weeks — the count falling to zero with no errors is the goal state
  • Leave the redirects in place permanently. AMP URLs are referenced from old shares, Google's cache, and third-party apps for a long time

The Bigger Lesson: Date-Check Every "Google Says You Must"

AMP is the clearest example of a whole category: advice that was true, then expired, but never stopped circulating. The same graveyard holds meta keywords, exact-match domains, "submit your site to Google", separate m-dot mobile sites, and Google Authorship, and someone is still selling each of them. Search advice has a shelf life, and Google rarely announces expiries loudly.

The filter that works: ask what MECHANISM the advice relies on, and check whether that mechanism still exists. AMP's mechanism was the Top Stories requirement — removed in 2021, so the advice died in 2021. When the mechanism is "Google ranks fast, stable, useful pages", the advice survives every update, because that is the one constant. Optimize for the constant, and audit anything that asks you to maintain a second copy of your website.

The Fix, Step By Step

  1. 1

    If GSC says "no AMP pages": do nothing

    That is the healthy state for a modern site. There is no penalty, no missed carousel, no mobile disadvantage — verify your pages pass Core Web Vitals and close the tab.

  2. 2

    If you run AMP: check what it still earns you

    Compare AMP vs regular page traffic in Search Console (Search Appearance → AMP). For nearly all sites in 2026 the honest answer is "nothing a fast regular page wouldn't get" — that is your green light to remove.

  3. 3

    Break the pairing before deleting anything

    Remove rel="amphtml" links from regular pages first. AMP copies without a partner are just orphan duplicates, which is why the next step matters immediately.

  4. 4

    301 every AMP URL to its canonical page

    Redirect /page/amp/ → /page/ site-wide (AMP plugins usually offer this on deactivation). This removes the duplicates, preserves equity, and cleans up Search Console over the following weeks.

  5. 5

    Fix the real speed problem AMP was hiding

    Run PageSpeed Insights mobile on your regular pages. If they fail Core Web Vitals, that is the actual work — architecture, images, JavaScript weight. AMP was the workaround; the fix is a fast site.

From the trenches

How we hit this on a real production site

This came out of a real Search Console review this week. Working through a property's reports, the owner hit the AMP section — "no AMP pages detected" — and asked the reasonable question: is that a problem, and if we add them, how do we avoid the duplicate-content mess we see on other sites?

The site in question is a static-first build: pre-rendered HTML, near-zero JavaScript, 100/100 mobile Lighthouse. An AMP version would have been a second copy of every page — slower to maintain, split analytics, restricted components — purchased for a carousel requirement that was removed in 2021. The advice held: leave it, and treat "no AMP pages" as a badge of a site that never needed the crutch.

The duplicate-content instinct behind the question was the best part — the same instinct that catches www duplicates and indexable staging domains. Every parallel copy of your content is a liability that needs active management. AMP asks you to adopt one permanently. In 2026, nothing pays you back for that risk. If you are maintaining AMP right now and want a second opinion on removing it, send us your Search Console AMP report — the exit path above takes most sites an afternoon.

Frequently Asked Questions

Will removing AMP hurt my mobile rankings?

Not if your regular pages pass Core Web Vitals. AMP has not been a ranking signal or a Top Stories requirement since 2021 — publishers who removed it report no losses. The redirect step preserves any link equity the AMP URLs held.

Google Search Console shows an AMP section — doesn't that mean Google wants AMP?

The report exists to help sites that already serve AMP find validation errors. "No AMP pages detected" is a neutral statement, not a recommendation — the same way an empty 404 report doesn't mean Google wants you to add 404s.

Wasn't AMP faster than a normal page can ever be?

Its speed came from restriction (no custom JS, inline size-capped CSS) plus Google's cache preloading results. A pre-rendered static page with minimal JavaScript hits the same real-world numbers on your own domain — this site scores 100/100 mobile without a line of AMP.

I'm on WordPress with an AMP plugin. Is deactivating it enough?

Deactivate its AMP output and enable its redirect option (or add 301s for /amp/ URLs yourself) BEFORE removing the plugin entirely. Deleting the plugin with no redirects leaves indexed AMP URLs to 404, which drags out the cleanup for months.

What other "must-do" SEO advice is expired like AMP?

Meta keywords (ignored since 2009), separate m-dot mobile sites (responsive won), "submit to search engines" services, exact-match domain bonuses, and Google Authorship are the classics. Same test for all: identify the mechanism the advice depends on, and check whether Google still operates it.

Still stuck? Send us the exact error.

Paste the exact error message you're seeing and where it happens. We'll take a look — if it's quick we'll point you at the fix, and if it's deeper we'll tell you honestly what it takes.

Reach the Summit

Rather have someone just fix it?

This is literally what we do all day — websites, SEO, performance, and the weird errors in between.

Start the Conversation