生成的sitemap文件,商品分类文件,如果是
http://www.abc.com/category-1-b0.html
在sitemap文件里面少了一个”/”
结果变成了
http://www.abc.comcategory-1-b0.html
分类是
修改代码
sitemaps.php大约第66行
把
'loc' => "$site_url" . build_uri('category', array('cid' => $row['cat_id'])),
改成
'loc' => "$site_url/" . build_uri('category', array('cid' => $row['cat_id'])),
即可
《“ecshop 2.6.2 sitemaps.php的一个bug”》 有 1 条评论
哦 学习到了