目的:
将原有的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(); }