301(永久移動)請求的網(wǎng)頁已被永久移動到新位置。服務(wù)器返回此響應(yīng)(作為對GET或HEAD請求的響應(yīng))時,會自動將請求者轉(zhuǎn)到新位置。使用此代碼可通知搜索引擎蜘蛛,某個網(wǎng)頁或網(wǎng)站已被永久移動到新位置。
301(永久移動)請求的網(wǎng)頁已被永久移動到新位置。服務(wù)器返回此響應(yīng)(作為對GET或HEAD請求的響應(yīng))時,會自動將請求者轉(zhuǎn)到新位置。使用此代碼可通知搜索引擎蜘蛛,某個網(wǎng)頁或網(wǎng)站已被永久移動到新位置。
Internet信息服務(wù)管理器 -> 虛擬目錄 -> 重定向到URL,輸入需要轉(zhuǎn)向的目標(biāo)URL,并選擇“資源的重定向”。
<%@ Language=VBScript %> <% Response.Status="301 Moved Permanently" Response.AddHeader "Location", "http://www.fpapsme.com/" %>
<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>
header("HTTP/1.1 301 Moved Permanently"); header("Location: http://www.fpapsme.com/"); exit();
$q = new CGI; print $q->redirect("http://www.fpapsme.com/");
<% response.setStatus(301); response.setHeader( "Location", "http://www.fpapsme.com/" ); response.setHeader( "Connection", "close" ); %>
新建.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
15038386808
地址:鄭州市索凌路8號22號樓11層