专注ECSHOP第九年
始自2007,服务二千多商户,不断为您增光溢彩

修改ecs_header为301重定向 避免搜索引擎封杀

目的:

将原有的302重定向改为301永久重定向,避免被搜索引擎封杀category/goods页

打开 includes/lib_base.php

查找

if (preg_match(‘/^\s*location:/is’, $string))
{
@header($string . “\n”, $replace);

exit();
}

改为

if (preg_match('/^\s*location:/is', $string))
    {
    	@header('HTTP/1.1 301 Moved Permanently');//uuecs.com 将原有的302重定向改为301永久重定向,避免被搜索引擎封杀category/goods页
        @header($string . "\n", $replace);
        exit();
    }

 

赞(0) 打赏
未经允许不得转载:阿牛ECSHOP » 修改ecs_header为301重定向 避免搜索引擎封杀
分享到: 更多 (0)
1

评论 抢沙发

阿牛ECSHOP 更专业 更方便

关于我们联系我们

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

微信扫一扫打赏