租空間實現301重定向的方法:1、新建.htaccess文件添加相關代碼,并上傳到網站根目錄中實現301重定向;2、打開根目錄下的index.php文件,在頂部添加相關php代碼實現301重定向。
具體內容如下:
1、新建.htaccess文件添加以下代碼并上傳到網站根目錄來實現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代碼實現,打開根目錄下的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();
}