详情页

ECshop设置301最快捷最简单的方法

时间:2024年01月31日

编辑:佚名

ECshop设置301最快捷最简单的方法
在 init.php中加入以下代码
复制代码
if (strtolower($_SERVER['SERVER_NAME'])!='www.78moban.com')
{
$URIRedirect=$_SERVER['REQUEST_URI'];
if(strtolower($URIRedirect)=="/index.php")
{
  $URIRedirect="/";
}
header('HTTP/1.1 301 Moved Permanently');
header('Location:http://www.78moban.com'.$URIRedirect);
exit();
}
复制代码
相关文章
猜你需要