網(wǎng)站站點301重定向代碼合集
[重要通告]如您遇疑難雜癥,本站支持知識付費業(yè)務(wù),掃右邊二維碼加博主微信,可節(jié)省您寶貴時間哦!
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://301.5uhezu.com/”
%>
3、ASP.Net下的301轉(zhuǎn)向代碼
4、PHP下的301轉(zhuǎn)向代碼
header(”HTTP/1.1 301 Moved Permanently”);
header(”Location: http://301.5uhezu.com/”);
exit();
5、CGI Perl下的301轉(zhuǎn)向代碼
$q = new CGI;
print $q->redirect(”http://301.5uhezu.com/”);
6、JSP下的301轉(zhuǎn)向代碼
<%
response.setStatus(301);
response.setHeader( “Location”, “http://301.5uhezu.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} ^5uhezu.com[NC]
RewriteRule ^(.*)$ http://301.5uhezu.com/$1 [L,R=301]
2)重定向到新域名
Options +FollowSymLinks
RewriteEngine on
RewriteRule ^(.*)$ http://301.5uhezu.com/$1 [L,R=301]
3)使用正則進(jìn)行301轉(zhuǎn)向,實現(xiàn)偽靜態(tài)
Options +FollowSymLinks
RewriteEngine on
RewriteRule ^news-(.+)\.html$ news.php?id=$1
將news.php?id=123這樣的地址轉(zhuǎn)向到news-123.html
8、Apache下vhosts.conf中配置301轉(zhuǎn)向
為實現(xiàn)URL規(guī)范化,SEO通常將不帶WWW的域名轉(zhuǎn)向到帶WWW域名,vhosts.conf中配置為:
ServerName 301.5uhezu.com
DocumentRoot /home/5uhezu.com
ServerName lesishu.cn
RedirectMatch permanent ^/(.*) http://301.5uhezu.com/$1
Apache下除了以上2種方法,還有其他配置方法和可選參數(shù),建議閱讀Apache文檔。
301轉(zhuǎn)向情況檢測
http://www.seoconsultants.com/tools/headers.asp
問題未解決?付費解決問題加Q或微信 2589053300 (即Q號又微信號)右上方掃一掃可加博主微信
所寫所說,是心之所感,思之所悟,行之所得;文當(dāng)無敷衍,落筆求簡潔。 以所舍,求所獲;有所依,方所成!