将tage页面网址更改为.html后缀magento

时间:2014-05-22 06:26:38

标签: magento magento-1.8

我想改变这条道路:

/tag/product/list/tagId/4/

对于这样的事情:

/tag/product/list/tagId/4.html

Magento也支持.html,我的意思是当你打开这个链接:/tag/product/list/tagId/4.html它会起作用,但是在产品页面和热门标签页面中,url是/ tag / product / list / TAGID / 4

我找到了解决方案:

在此文件中:

app/code/core/Mage/Tag/Model/Tag.php

将getTaggedProductsUrl()的返回值更改为

return Mage::getUrl('tag/product/list') .'tagId/' .$this->getTagId() .'.html';

0 个答案:

没有答案