主頁(yè) > 知識(shí)庫(kù) > 301 轉(zhuǎn)向代碼合集

301 轉(zhuǎn)向代碼合集

熱門(mén)標(biāo)簽:揭陽(yáng)穩(wěn)定外呼系統(tǒng)平臺(tái) 訊飛語(yǔ)音電話機(jī)器人 宿州語(yǔ)音外呼系統(tǒng)運(yùn)營(yíng)商 臺(tái)州400電話辦理 重慶電話電銷機(jī)器人系統(tǒng) 蒂森電梯外呼系統(tǒng) 海南營(yíng)銷智能外呼系統(tǒng)價(jià)格多少 龍圖博物館地圖標(biāo)注 合陽(yáng)縣地圖標(biāo)注

樂(lè)思蜀將SEO工作中所需要的301轉(zhuǎn)向代碼進(jìn)行了整理,收藏并分享,以備查閱。

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.lesishu.cn/articles/301/”
%>

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.lesishu.cn/articles/301/“);
}
/script>

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

header(”HTTP/1.1 301 Moved Permanently”);
header(”Location: http://www.lesishu.cn/articles/301/”);
exit();

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

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

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

%
response.setStatus(301);
response.setHeader( “Location”, “http://www.lesishu.cn/” );
response.setHeader( “Connection”, “close” );
%>

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

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

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

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

2)重定向到新域名

Options +FollowSymLinks
RewriteEngine on
RewriteRule ^(.*)$ http://www.lesishu.cn/$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

將news.php?id=123這樣的地址轉(zhuǎn)向到news-123.html

8、Apache下vhosts.conf中配置301轉(zhuǎn)向

為實(shí)現(xiàn)URL規(guī)范化,SEO通常將不帶WWW的域名轉(zhuǎn)向到帶WWW域名,vhosts.conf中配置為:

VirtualHost *:80>
ServerName www.lesishu.cn
DocumentRoot /home/lesishu
/VirtualHost>

VirtualHost *:80>
ServerName lesishu.cn
RedirectMatch permanent ^/(.*) http://www.lesishu.cn/$1
/VirtualHost>

Apache下除了以上2種方法,還有其他配置方法和可選參數(shù),建議閱讀Apache文檔。

301轉(zhuǎn)向情況檢測(cè)

  1. http://www.seoconsultants.com/tools/headers.asp
  2. http://www.internetofficer.com/seo-tool/redirect-check/

標(biāo)簽:賀州 湖南 山南 安徽 新鄉(xiāng) 遵義 大慶

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《301 轉(zhuǎn)向代碼合集》,本文關(guān)鍵詞  301,轉(zhuǎn)向,代碼,合集,301,轉(zhuǎn)向,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《301 轉(zhuǎn)向代碼合集》相關(guān)的同類信息!
  • 本頁(yè)收集關(guān)于301 轉(zhuǎn)向代碼合集的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章