解决Magento多语言或多店铺产品URL跳转问题
时间:2016-05-06 16:53来源: 作者: 点击:次
Magento做多语言或多店铺网站非常灵活,magento多语言站URL默认不是以目录形式显示的,我们只需要在系统-配置-Web里设置Url Options Add Store Code to Urls为YES就行了 。但这个时候,很多SKU多语
Magento做多语言或多店铺网站非常灵活,magento多语言站URL默认不是以目录形式显示的,我们只需要在“系统->配置->Web”里设置Url Options “Add Store Code to Urls”为YES就行了 。但这个时候,很多SKU多语言或多店铺的产品URL也会跟关不同的语言或店铺发生变化,直接切换语言或店铺时就会出现404页面。
解决方法:
1、修改文件: /app/code/core/Mage/Core/Model/Url/Rewrite.php 第252行:
// $targetUrl = $request->getBaseUrl(). ‘/’ . $this->getRequestPath();
|
注释掉,添加这段代码:
if (Mage::getStoreConfig(‘web/url/use_store’) && $storeCode = Mage::app()->getStore()->getCode()) { $targetUrl = $request->getBaseUrl(). ‘/’ . Mage::app()->getStore()->getCode() . ‘/’ . $this->getRequestPath(); } else $targetUrl = $request->getBaseUrl(). ‘/’ . $this->getRequestPath();
|
关于后台的index.php/admin的修改:
2、修改文件: /app/code/core/Mage/Catalog/Model/Product/Option/Type/File.php 第526行:
//$this->_getOptionDownloadUrl($urlRoute, $urlParams),
|
添加这段代码:
str_replace(“index.php/admin”, ONE_OF_YOUR_STORE_CODE,$this->_getOptionDownloadUrl($urlRoute, $urlParams)),
|
(责任编辑:最模板) |
------分隔线----------------------------