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文件
把里面的内容改为如下:
//if (null === $parentPath) {
//$parentPath = $this->getResource()->getCategoryParentPath($category);
//}
//elseif ($parentPath == '/') {
$parentPath = '';
//}
//$parentPath = $this->getResource()->getCategoryParentPath($category);
//}
//elseif ($parentPath == '/') {
$parentPath = '';
//}
3.最后到后台更新哈索引和缓存。