租空間實(shí)現(xiàn)301重定向的方法:1、新建.htaccess文件添加相關(guān)代碼,并上傳到網(wǎng)站根目錄中實(shí)現(xiàn)301重定向;2、打開根目錄下的index.php文件,在頂部添加相關(guān)php代碼實(shí)現(xiàn)301重定向。
具體內(nèi)容如下:
1、新建.htaccess文件添加以下代碼并上傳到網(wǎng)站根目錄來實(shí)現(xiàn)301重定向,代碼如下:
<IfModule mod_rewrite.c>RewriteEngine On
RewriteCond %{HTTP_HOST} ^123.com$ [NC]
RewriteRule ^(.*)$ http://www.123.com/$1 [R=301,L]
</IfModule>
2、使用php代碼實(shí)現(xiàn),打開根目錄下的index.php文件,在頂部<?php下面添加以下代碼:
$the_host = $_SERVER['HTTP_HOST'];if($the_host != 'www.123.com'){
header("HTTP/1.1 301 Moved Permanently");
header("Location:http://www.123.com/");
exit();
}