将尾部斜杠添加到站点地图
Adding trailing slash to sitemap
是否可以在站点地图上添加尾部斜线?
例如我当前的站点地图:
<url>
<loc>
https://www.website.com.au/shop/category/laser-therapy/capillus272-laser-cap
</loc>
<lastmod>2018-09-24T10:12:15+09:30</lastmod>
<changefreq>weekly</changefreq>
<priority>0.5</priority>
我想在这部分添加尾部斜线 https://www.website.com.au/shop/category/laser-therapy/capillus272-laser-cap
这可能吗?
谢谢!
那当然可以。在生成 xml 文件的模板中,执行如下操作:
<loc>
{page_url}/
</loc>
是否可以在站点地图上添加尾部斜线?
例如我当前的站点地图:
<url>
<loc>
https://www.website.com.au/shop/category/laser-therapy/capillus272-laser-cap
</loc>
<lastmod>2018-09-24T10:12:15+09:30</lastmod>
<changefreq>weekly</changefreq>
<priority>0.5</priority>
我想在这部分添加尾部斜线 https://www.website.com.au/shop/category/laser-therapy/capillus272-laser-cap
这可能吗?
谢谢!
那当然可以。在生成 xml 文件的模板中,执行如下操作:
<loc>
{page_url}/
</loc>