Rankite
ServicesResultsToolsTeamAboutBlogCareersContactFree SEO Audit
Technical

Mobile Sitemap: Do You Still Need One in 2026?

Home / Blog / Mobile Sitemap: Do You Still Need One in 2026?
Mobile sitemap concept illustration for SEO

A mobile sitemap is an XML sitemap built for mobile-only content, either the old feature-phone annotation or, informally, a set of alternate-URL tags for a separate m.example.com domain. Most sites in 2026 do not need one: if your site is responsive, your regular XML sitemap already covers every device, and Google has run mobile-first indexing across the entire web since July 2024. The cases where a mobile sitemap (or something like it) still matters are narrower than most guides on this topic admit, and this one walks through exactly which situation you are in.

We built this guide because the existing pages on "mobile sitemap" mostly repeat a definition from a decade ago without saying whether it still applies to you. It usually does not. Below you get the real history of the feature, a clear decision path for your own site, the correct way to handle separate mobile URLs if you genuinely have them, and what to do with any leftover mobile sitemap tags you find in an old file.

Key takeaways

  • A mobile sitemap almost never applies to a modern responsive site; it was built for two situations that have mostly disappeared.
  • The old <mobile:mobile/> tag targeted feature phones running WAP, XHTML Mobile Profile, or cHTML browsers. Google retired feature-phone crawling and indexing support in November 2016.
  • If you run a genuinely separate mobile domain (m.example.com), the fix is not a "mobile sitemap," it is a rel="alternate" annotation added to your existing sitemap entries.
  • Mobile-first indexing began rolling out in 2018, and Google confirmed in July 2024 that the migration was complete for 100% of the web, so Google is already indexing your site from its mobile version.
  • A sitemap, mobile or otherwise, only aids discovery. Ahrefs found that roughly 96% of pages still get zero organic traffic from Google, and no sitemap format fixes that on its own.
  • Check your own setup before changing anything; most WordPress, Shopify, and Squarespace sites are already responsive and need nothing extra.

What is a mobile sitemap, exactly?

A mobile sitemap is one of two things: the old <mobile:mobile/> annotation that told Google a page was formatted for a feature phone, or an informal shorthand for adding alternate-URL annotations to a sitemap when a site runs a separate mobile domain. Neither one is a distinct file format. It is always the same XML sitemap protocol, just with an extra tag on specific entries.

The first meaning is mostly historical. In the mid-2000s and early 2010s, plenty of sites served a stripped-down version of their pages to feature phones using WAP, XHTML Mobile Profile, or cHTML markup, languages built for browsers that could not render a normal webpage. The Sitemaps protocol added a <mobile:mobile/> tag so crawlers could tell those pages apart from the desktop version.

The second meaning shows up today when someone still runs a separate mobile subdomain, most often a legacy m.example.com setup that predates responsive design. In that case, "building a mobile sitemap" really means adding a rel="alternate" annotation with a CSS media query to the desktop URL's existing sitemap entry, not creating a second file.

Do you still need a mobile sitemap in 2026?

No, unless you still serve dedicated feature-phone pages or maintain a separate m. subdomain, both of which are rare in 2026. If your site uses responsive design, meaning the same URL and HTML adapt to any screen size through CSS, one standard XML sitemap is enough. Google has run mobile-first indexing, evaluating the mobile version of your pages for ranking, across the entire web since July 2024.

That timeline matters because it shows how long this has been settled. Google first told site owners not to bother building a mobile sitemap for mobile-friendly sites years before mobile-first indexing even existed, then spent nearly a decade migrating the rest of the web onto it.

From mobile sitemaps to mobile-first indexingRankite timeline of Google's public guidance2015Google says not tobuild one forresponsive sites2016Feature-phonesitemap supportretired2018Mobile-firstindexing beginsrolling out2020Deadline set forremaining sitesto switch over2024Migrationcomplete for100% of the webEvery step of this timeline made a standalone mobile sitemap less necessary, not more.
Source: Google Search Central Blog; Search Engine Land

The practical upshot is that a mobile sitemap cannot help a site Google already treats as mobile-first by default. If your goal is better mobile visibility, that budget is almost always better spent on mobile SEO strategy work like page speed and usability rather than sitemap tags nobody reads anymore.

The 3 mobile setups, and what each one actually needs

Whether you need anything beyond a normal sitemap depends entirely on how your site serves mobile visitors. There are three real setups, and Google recommends a different answer for each.

SetupHow it worksMobile sitemap needed?What to do instead
Responsive designSame URL and HTML for every device; CSS adapts the layoutNoNothing. One ordinary sitemap covers everything.
Dynamic servingSame URL, but the server sends different HTML based on the user-agentNoAdd a Vary: User-Agent HTTP header so Google and CDNs cache each version correctly.
Separate mobile URLsA distinct URL for mobile (often m.example.com), linked with rel=canonicalRare, only as an annotationAdd a rel="alternate" media annotation to the existing sitemap entry.
Feature-phone pagesLegacy WAP, XHTML Mobile Profile, or cHTML markupNo, retiredRemove any leftover <mobile:mobile/> tags; they are not read anymore.
3 mobile setups in 2026ResponsiveOne URL, one sitemap,no mobile sitemapDynamic servingOne URL, Vary header,no mobile sitemapSeparate URLsrel=alternate annotation,not a mobile sitemap
Source: Google Search Central

Most sites built in the last several years fall into the first row without ever deciding to. If your theme or CMS handles layout with CSS breakpoints, you are already responsive and this entire topic is a non-issue for you.

How to tell which setup your site uses

  1. Open your site on a phone and a desktop browser side by side. If the address bar shows the exact same URL on both, you are on responsive design or dynamic serving.
  2. View the page source on both devices. If the HTML differs by device while the URL stays identical, that is dynamic serving; confirm the Vary: User-Agent header is present.
  3. If your phone browser redirects to an m.yourdomain.com address or a /mobile/ path, you are on separate URLs and need the rel=alternate annotation described below.
  4. Open Search Console's URL Inspection tool and check which version Googlebot Smartphone actually fetched last; it removes any guesswork.
  5. If you find an old sitemap file with <mobile:mobile/> tags, or a plugin still labeled "mobile sitemap," it is safe to remove. Google stopped using it in 2016.

How to add mobile URL annotations (separate-URL sites only)

If step three above applies to you, do not build a second sitemap. Add an xhtml:link annotation to the existing entry for the desktop URL, pointing at its mobile counterpart with a CSS media query. Here is a minimal, valid example:

<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
        xmlns:xhtml="http://www.w3.org/1999/xhtml">
  <url>
    <loc>https://example.com/shoes</loc>
    <xhtml:link rel="alternate"
      media="only screen and (max-width: 640px)"
      href="https://m.example.com/shoes" />
  </url>
</urlset>

Three rules keep this working. The mobile URL still needs its own rel="canonical" tag pointing back to the desktop version. The redirect behavior between the two URLs has to match what the annotation says, so Google is not sent to a page different from what it expects. And you list only the desktop (or canonical) URL as the primary <loc>, never both as separate top-level entries for the same content.

Google's own sitemap documentation puts it plainly: if you have different URLs for mobile and desktop versions of a page, point to only one version in your sitemap, and annotate the URL if you want to reference both. There is no dedicated "mobile sitemap" endpoint to submit separately in Search Console; it is the same file you already have, generated the same way our free XML sitemap generator builds one for any site. If you have not built your base sitemap yet, start with our guide on how to make a sitemap before adding any mobile-specific annotation on top of it.

What happened to the old mobile:mobile tag?

It was a Sitemaps protocol extension for feature phones running WAP, XHTML Mobile Profile, or cHTML browsers, and Google retired feature-phone crawling and indexing support in November 2016. Search Console no longer reads the tag, so leaving it in a sitemap today does nothing, good or bad.

The tag existed because those old browsers could not render a normal webpage, so sites served a separate, stripped-down version and needed a way to tell Googlebot which URLs were built for that audience. Once smartphones with full browsers became the default and responsive design became the standard build pattern, the entire category of problem it solved mostly stopped existing.

Then vs nowPre-2016: feature-phone sitemapsmobile:mobile tag requiredWAP / XHTML MP / cHTML markupManual annotation per URLSupport retired in 20162026: mobile-first indexingNo special tag neededResponsive HTML adapts automaticallyOne sitemap covers every deviceComplete for 100% of the web since 2024
Source: Google Search Central Blog ("An update on Google's feature-phone crawling and indexing," 2016)

If your CMS or an old SEO plugin still generates a file with this tag, it is not causing harm, but it is also not doing anything useful. Cleaning it out is a five-minute task worth doing the next time you touch your robots.txt sitemap directive or run a broader sitemap best practices pass.

Common mobile sitemap mistakes to avoid

  • Leaving the old mobile:mobile tag in place. Harmless, but it is dead weight from a decade-old spec. Remove it during your next sitemap cleanup.
  • Building a "mobile sitemap" for a responsive site. It changes nothing Google reads and just adds another file to keep in sync.
  • Running separate mobile URLs without a working rel=canonical back to desktop. Without it, Google can index the wrong version or split ranking signals between two URLs.
  • Skipping the Vary: User-Agent header on dynamic serving. Missing it can cause CDNs and caches to serve the wrong version to the wrong device.
  • Assuming mobile-first indexing requires a manual sitemap change. It does not; Google made the switch on its side, not in the sitemap format.

Fixing all five usually takes less time than researching whether you need a mobile sitemap in the first place, which is exactly why so many sites still have leftover tags nobody has looked at since 2016. If mobile rendering itself is the real concern, our AMP mobile SEO guide covers the related question of whether that older mobile framework is still worth using.

Frequently asked questions

Do I need a mobile sitemap for a responsive website? No. A responsive site serves one URL and one set of HTML to every device, so your normal XML sitemap already covers it. Google's own guidance is that mobile-friendly sites should not build a separate mobile sitemap at all.

What was the mobile:mobile tag used for? It flagged sitemap entries built for feature phones running WAP, XHTML Mobile Profile, or cHTML browsers. Google retired feature-phone crawling and indexing support in November 2016, so the tag has no effect on modern crawling.

Is a mobile sitemap different from a regular XML sitemap? Not structurally. It is the same XML sitemap format, either with the old feature-phone annotation or, for separate mobile URLs, a rel=alternate media annotation added to an existing url entry. There is no separate mobile sitemap file format.

Do I need to list my m.example.com pages separately in my sitemap? Only if you still run a genuinely separate mobile domain. Add an xhtml:link rel=alternate annotation to the desktop URL's entry pointing to the mobile version, rather than listing the mobile URLs as their own entries.

Does mobile-first indexing change what I put in my sitemap? No. Mobile-first indexing changed which version of a page Google evaluates for ranking, the mobile version, not the sitemap format. You still list one canonical URL per page.

Can one sitemap cover both my desktop and mobile URLs? Yes, and that is what Google recommends. If your desktop and mobile content live at different URLs, point the sitemap at the canonical version and add an alternate annotation for the mobile counterpart.

Will Google still read old mobile sitemap tags if I leave them in? No. Search Console and Googlebot stopped processing feature-phone sitemap extensions after 2016, so old mobile:mobile tags sit inertly in the file without causing errors or bringing any benefit.

How do I check which mobile setup my site actually uses? Compare the URL you see on a phone and on a desktop browser. If it is identical, you are responsive or use dynamic serving. If it changes to a subdomain or a /mobile/ path, you are on separate URLs and need the rel=alternate annotation.

Does having a mobile sitemap improve mobile rankings? No. A sitemap only helps discovery and crawling, it carries no ranking weight of its own. Google's documentation is explicit that submitting a sitemap does not guarantee higher positions, mobile or otherwise.

What should I do with an old mobile sitemap file I find on my server? Keep any entries that still point to real, live URLs in your main sitemap, then delete the file or plugin generating the separate mobile-only sitemap. Google does not read it, and it is one more file you would otherwise have to maintain.

What to do next

Check which of the three setups your site actually uses before you touch anything. If you are responsive, which is most sites in 2026, you already have everything you need and can stop here. If you run separate mobile URLs, add the rel=alternate annotation to your existing sitemap rather than building a second file. Either way, run your sitemap through our free XML sitemap generator to confirm it is clean, then move on to the technical checks that actually move rankings. If you want a second pair of eyes on your crawlability and mobile setup together, request a free SEO audit from Rankite.

Related articles

Let's grow

Ready to own page one?

Get a free, no-obligation SEO audit and a 30-minute strategy session. We'll show you exactly where the growth is hiding.

Book your free audit Explore services
Get in touch

Tell us about your project

Fill out the form and we'll get back to you within one business day. Prefer email? Write to us directly at contact@rankite.com.

Or copy our email and write to us directly: contact@rankite.com