SEO (Search Engine Optimization)
Mobile Sitemaps
A mobile sitemap is a type of XML sitemap that specifically targets mobile content on a website. Mobile sitemaps are used to help search engines discover and index the mobile version of a website, which is optimized for display on smaller screens and touch-based input.
Here is an example of a simple mobile sitemap:
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
xmlns:mobile="http://www.google.com/schemas/sitemap-mobile/1.0">
<url>
<loc>https://m.example.com/page1.html</loc>
<lastmod>2022-12-31</lastmod>
<mobile:mobile />
</url>
<url>
<loc>https://m.example.com/page2.html</loc>
<lastmod>2022-12-30</lastmod>
<mobile:mobile />
</url>
</urlset>