|
将原有的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'); //maivo.cn 将原有的302重定向改为301永久重定向
- @header($string . "\n", $replace);
- exit();
- }
复制代码
|
|