Windows 空间怎样实现 301 重定向
我这里讲得 Windows 实现 301 跳转是直接修改 WordPress 函数就可以实现 301 重定向,打开根目录下得增 function.php,在<?php 后面添加如下代码:
if (strtolower($_SERVER[‘SERVER_NAME’])!=’www.weixiaoduo.com’)
{
$URIRedirect=$_SERVER[‘REQUEST_URI’];
if(strtolower($URIRedirect)==”/index.php”)
{
$URIRedirect=”/”;
}
header(‘HTTP/1.1 301 Moved Permanently’);
header(‘Location:http://www.weixiaoduo.com’.$URIRedirect);
exit();
}