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();
}