Quantcast
Channel: besstar – magento 建站,magento 2.0建站,magento 外贸模板,magento 网站建设,magento 网站制作,深圳 magento建站,广州 magento,外贸建站,深圳 外贸建站
Viewing all articles
Browse latest Browse all 15

magento URL大小写404解决

$
0
0

把magento默认地址是:http://www.***.com/abc.html
现在要求:http://www.china-hf.net/ABC.html,也能访问。

在这种情况下Magento默认是不支持的。那怎么办?

首先找到:app/code/core/Mage/Core/Model/Resource/Url/Rewrite.php,这个文件的public function loadByRequestPath(Mage_Core_Model_Url_Rewrite $object, $path)方法,大概在134行。
修改这个方法里面的一行代码就可以了。

在158行的样子,找到:if (!array_key_exists($item[‘request_path’], $mapPenalty))改成

if (!array_key_exists(strtolower($item[‘request_path’]), array_change_key_case($mapPenalty)))就可以了。


Viewing all articles
Browse latest Browse all 15

Trending Articles