I recently created a mobile version of my website. It uses the same urls as the normal version but detects user-agents and directs them to the correct template.
I created a mobile sitemap using google standards
<?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>http://mobile.example.com/article100.html</loc>
<mobile:mobile/>
</url>
</urlset>
However when I add the sitemap to webmaster tools it splits my sitemap into two categories.
1
/sitemap/mobile_sitemapindex.xml
Web
urls:64,102
indexed:55,456
Mobile
urls:64,102
indexed:0
I also have a normal sitemap in webmaster tools that has 64102 urls. Since the mobile and normal versions of my website share the same urls the sitemaps are almost identical.
Now webmaster tools shows I have double my web urls because of the mobile sitemap... anyone know what I am doing wrong?