美国服务器index.php怎么301重定向到首页

已关闭留言

美国服务器index.php301重定向到首页的方法:

index.php这个默认是首页,可以通过添加以下代码来做301重定向,代码如下:

$the_host = $_SERVER[‘HTTP_HOST’];

$request_uri = isset($_SERVER[‘REQUEST_URI’]) ? $_SERVER[‘REQUEST_URI’] : ”;

if($the_host == ‘www.123.com’)

{

header(‘HTTP/1.1 301 Moved Permanently’);

header(‘Location: http://123.com’.$request_uri);//

}

?>