ecshop 2.6.2 sitemaps.php的一个bug

2009年五月16日 由 贝贝妈 Leave a reply »

生成的sitemap文件,商品分类文件,如果是

http://www.abc.com/category-1-b0.html

在sitemap文件里面少了一个”/”
结果变成了

http://www.abc.comcategory-1-b0.html

分类是
修改代码
sitemaps.php大约第66行

  1. 'loc'        =>  "$site_url" . build_uri('category', array('cid' => $row['cat_id'])),

改成

  1. 'loc'        =>  "$site_url/" . build_uri('category', array('cid' => $row['cat_id'])),

即可

Popularity: 29%

相关文章

Advertisement

One Response

Leave a Reply