阅读:3645回复:0
Magento 分类多层URL变成一层
移除magento的URL中子分类的上级分类,也就是多级分类中的url变成一级分类,而不存在层次,不知是否有利于SEO。
譬如:一级分类为:www.magento.com/aa,他的二级分类为www.magento.com/aa/bb 我们想要它变成www.magento.com/bb 下面是解决方法: 找到文件 app/code/core/Mage/Catalog/Model/Url.php 找到下面代码,然后把该注释的注释掉就可以了,大概在805行左右。 //if (null === $parentPath) {//$parentPath = $this->getResource()->getCategoryParentPath($category);//}//elseif ($parentPath == '/') {$parentPath = ''; //('Don't comment it')//}当然刷新页面还是不行的,需要在index management下面重新reindex data一下,然后刷新缓存。 在去除分类页面的.html的时候,刷新缓存,会发现,还是带着html,也是需要index management,重新索引一次。 |
|