大j8在线网站_超97在线视频免费观看_有没有最新在线观看视频_人人澡人人人超碰

幫助中心

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

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

2021-01-25

301(永久移動(dòng))請求的網(wǎng)頁已被永久移動(dòng)到新位置。服務(wù)器返回此響應(yīng)(作為對GET或HEAD請求的響應(yīng))時(shí),會(huì)自動(dòng)將請求者轉(zhuǎn)到新位置。使用此代碼可通知搜索引擎蜘蛛,某個(gè)網(wǎng)頁或網(wǎng)站已被永久移動(dò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://swondonkey.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://swondonkey.com/");     } </script>

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

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

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

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

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

<%     response.setStatus(301);     response.setHeader( "Location", "http://swondonkey.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://swondonkey.com/$1 [L,R=301]

2)重定向到新域名 

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

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

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


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