怎么去除Magento产品URL的分类名称?

来源:互联网 发布:林志颖淘宝店 编辑:程序博客网 时间:2024/04/30 05:11

Magento默认的产品链接形式是带有分类名称的,如:http://www.xiaozhongpai.com/一级分类/二级分类/产品名.html。为了更好的做SEO,现在要改为:http://www.xiaozhongpai.com/产品名.html方法如下:

一、System-> Configuration -> Catalog -> Catalog -> Search Engine Optimizations

magento-setting

Use Categories Path for Product URLs选项为NO

二、在FTP里编辑 网站根目录/app/code/core/mage/catalog/model/url.php 做出如下更改:

1
2
3
4
5
6
//if (null === $parentPath) {
                    //$parentPath = $this->getResource()->getCategoryParentPath($category);
                //}
                //elseif ($parentPath == '/') {
                    $parentPath= '';
                //}

三、在网站后台更新索引和缓存。

0 0
原创粉丝点击