Log in

View Full Version : magento 简化产品url


Saegertown
2016-10-02, 07:00 PM
magento 默认的产品url 带有分类名称。如:www.xxx.com/分类1/分类2/产品.html. 现在要改为:
www.xxx.com/产品.html. 方法如下:

1.system->Configuration->Catelog->
http://www.0058.net/attachment.php?attachmentid=191&stc=1&d=1475406030


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

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

把里面的内容改为如下:


//if (null === $parentPath) {
//$parentPath = $this->getResource()->getCategoryParentPath($category);
//}
//elseif ($parentPath == '/') {
$parentPath = '';
//}

3.最后到后台更新哈索引和缓存。