View Single Post
  #1   IP: 199.115.98.60
Old 2016-10-02, 07:00 PM
Saegertown Saegertown is offline
初级会员
 
Join Date: 2005-03-27
Posts: 2
Saegertown 现在声名狼藉
Default magento 简化产品url

magento 默认的产品url 带有分类名称。如:www.xxx.com/分类1/分类2/产品.html. 现在要改为:
www.xxx.com/产品.html. 方法如下:

1.system->Configuration->Catelog->



把图片上的最后一个选为NO

2. 更改app-code-core-mage-catalog-model-url.php文件

把里面的内容改为如下:
Code:
//if (null === $parentPath) {
                    //$parentPath = $this->getResource()->getCategoryParentPath($category);
                //}
                //elseif ($parentPath == '/') {
                    $parentPath = '';
                //}
3.最后到后台更新哈索引和缓存。
Attached Images
File Type: png 1.png (145 KB, 1 views)
Reply With Quote