如何去掉多网店的URL中___store 和___from_store
在多网店的模式中,会出现?___store=cn&___from_store=jp,等这些字符,这种URL对搜索引擎是不友好的,而且容易造成重复页面,所以要去掉,去掉就要去找代码,呵呵
其实很简单
找到文件app/code/core/mage/core/model/store.php
大约897行
. (isset($storeParsedUrl['port']) ? ':' . $storeParsedUrl['port'] : '')
. $storeParsedUrl['path'] . $requestString
. ($storeParsedQuery ? '?'.http_build_query($storeParsedQuery, '', '&') : '');
把
. ($storeParsedQuery ? '?'.http_build_query($storeParsedQuery, '', '&') : '');
去掉
就是改成
. (isset($storeParsedUrl['port']) ? ':' . $storeParsedUrl['port'] : '')
. $storeParsedUrl['path'] . $requestString;
OK,刷新缓存,没了!!!!嬲性!!!
顺着摸出来的,哈
!!!!!!!!
转载请标注地址:magentowater:http://www.magentowater.com/blog/url-store