扫码关注官方订阅号
ringa_lee
看上去和我之前写mobile的sitemap好像,似乎不需要type="mobile"吧
https://github.com/phodal/phodaldev/blob/master/templates/sitemap_mobile.xml
XML里面必须要以/结尾
<?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"> {% spaceless %} {% for url in urlset %} <url> <loc>{{ url.location }}</loc> {% if url.lastmod %}<lastmod>{{ url.lastmod|date:"Y-m-d" }}</lastmod>{% endif %} {% if url.changefreq %}<changefreq>{{ url.changefreq }}</changefreq>{% endif %} {% if url.priority %}<priority>{{ url.priority }}</priority>{% endif %} <mobile:mobile/> </url> {% endfor %} {% endspaceless %} </urlset>
微信扫码关注PHP中文网服务号
QQ扫码加入技术交流群
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
PHP学习
技术支持
返回顶部
看上去和我之前写mobile的sitemap好像,似乎不需要type="mobile"吧
https://github.com/phodal/phodaldev/blob/master/templates/sitemap_mobile.xml
XML里面必须要以/结尾