Magento默认的产品链接形式是带有分类名称的,如:http://www.xiaozhongpai.com/一级分类/二级分类/产品名.html。为了更好的做SEO,现在要改为:http://www.xiaozhongpai.com/产品名.html。方法如下:
一、System-> Configuration -> Catalog -> Catalog -> Search Engine Optimizations
Use Categories Path for Product URLs选项为NO。
二、在FTP里编辑 网站根目录/app/code/core/mage/catalog/model/url.php 做出如下更改:
1
2
3
4
5
6
|
//if (null === $parentPath) { //$parentPath = $this->getResource()->getCategoryParentPath($category); //} //elseif ($parentPath == '/') { $parentPath
= '' ; //} |
三、在网站后台更新索引和缓存。