我正在尝试将谷歌推荐的移动站点地图标题添加到我的页面上,即:
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
xmlns:mobile="http://www.google.com/schemas/sitemap-mobile/1.0">
参考: http: //support.google.com/webmasters/bin/answer.py ?hl=en&answer=34648
如果我使用这个(C#):
sitemap.WriteStartElement("urlset", "http://www.sitemaps.org/schemas/sitemap/0.9");
它产生以下xml:
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
如果我用前缀来做:
sitemap.WriteStartElement("mobile", "urlset", "http://www.google.com/schemas/sitemap-mobile/1.0");
然后我得到以下信息:
<mobile:urlset mobile:xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
我怎样才能做到这一点?:
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
xmlns:mobile="http://www.google.com/schemas/sitemap-mobile/1.0">