空間怎么實(shí)現(xiàn)301重定向

小新
209
2020-12-25 16:40:52
欄目: 云計(jì)算

空間怎么實(shí)現(xiàn)301重定向

空間實(shí)現(xiàn)301重定向的方法有:

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

}

0