亚洲无码视频在线免费看_国产精品福利在线播放_亚洲av优女天堂在线直播_99视频精品热播免费观看

幫助中心

301(永久移動)請求的網(wǎng)頁已被永久移動到新位置。服務(wù)器返回此響應(yīng)(作為對GET或HEAD請求的響應(yīng))時,會自動將請求者轉(zhuǎn)到新位置。使用此代碼可通知搜索引擎蜘蛛,某個網(wǎng)頁或網(wǎng)站已被永久移動到新位置。

網(wǎng)站如何做301跳轉(zhuǎn)

2021-01-25

301(永久移動)請求的網(wǎng)頁已被永久移動到新位置。服務(wù)器返回此響應(yīng)(作為對GET或HEAD請求的響應(yīng))時,會自動將請求者轉(zhuǎn)到新位置。使用此代碼可通知搜索引擎蜘蛛,某個網(wǎng)頁或網(wǎng)站已被永久移動到新位置。

1、IIS下301設(shè)置 

Internet信息服務(wù)管理器 -> 虛擬目錄 -> 重定向到URL,輸入需要轉(zhuǎn)向的目標(biāo)URL,并選擇“資源的重定向”。 

2、ASP下的301轉(zhuǎn)向代碼

<%@ Language=VBScript %> <%     Response.Status="301 Moved Permanently"     Response.AddHeader "Location", "http://www.fpapsme.com/" %>

 

3、ASP.Net下的301轉(zhuǎn)向代碼

<script runat="server">     private void Page_Load(object sender, System.EventArgs e)     {     Response.Status = "301 Moved Permanently";     Response.AddHeader("Location","http://www.fpapsme.com/");     } </script>

4、PHP下的301轉(zhuǎn)向代碼

header("HTTP/1.1 301 Moved Permanently"); header("Location: http://www.fpapsme.com/"); exit();

5、CGI Perl下的301轉(zhuǎn)向代碼

$q = new CGI; print $q->redirect("http://www.fpapsme.com/");

6、JSP下的301轉(zhuǎn)向代碼

<%     response.setStatus(301);     response.setHeader( "Location", "http://www.fpapsme.com/" );     response.setHeader( "Connection", "close" ); %>

7、Apache下301轉(zhuǎn)向代碼 

新建.htaccess文件,輸入下列內(nèi)容(需要開啟mod_rewrite): 

1)將不帶WWW的域名轉(zhuǎn)向到帶WWW的域名下

Options +FollowSymLinks RewriteEngine on RewriteCond %{HTTP_HOST} ^lesishu.cn [NC] RewriteRule ^(.*)$ http://www.fpapsme.com/$1 [L,R=301]

2)重定向到新域名 

Options +FollowSymLinks RewriteEngine on RewriteRule ^(.*)$ http://www.fpapsme.com/$1 [L,R=301]

3)使用正則進行301轉(zhuǎn)向,實現(xiàn)偽靜態(tài)

Options +FollowSymLinks RewriteEngine on RewriteRule ^news-(.+).html$ news.php?id=$1


如沒特殊注明,文章均為友孚原創(chuàng),轉(zhuǎn)載請注明來自:http://www.fpapsme.com/news/28.html