虛擬目錄 -> 重定向到URL,輸入需要轉(zhuǎn)向的目標(biāo)URL,并選擇“資源的永久重定向”。 第二"/>

亚洲无人区一区二区三区_农村玉米地少妇野战亚洲_国产欧美日韩VA另类在线播放_免费人成视频网站在线_国产在线精品一区二区高清不卡

不同服務(wù)器301重定向設(shè)置

作者:zjadmin 瀏覽:3027 發(fā)布時(shí)間:2014-10-10
編輯 分享 評(píng)論 0

第一種情況,windows系統(tǒng)的服務(wù)器或者vps

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

第二種情況,Linux的主機(jī)。

做整站301跳轉(zhuǎn),只需要修改文件httpd.conf或者.htaccess文件保存就可以了:

RewriteEngine On

RewriteCond %{HTTP_HOST} ^xxxx.com [NC]

RewriteRule ^(.*)$ http://www.xxxx.com/$1 [L,R=301]

第三種情況,虛擬主機(jī)如何實(shí)現(xiàn)

虛擬主機(jī)可以利用httpd.ini文件為網(wǎng)站設(shè)置301永久重定向

1、網(wǎng)站服務(wù)器是IIS,在httpd.ini文件開始處加入以下規(guī)則:

RewriteCond Host: ^xxxx\.com$
RewriteRule (.*) http\://www\.xxxx\.com$1 [I,RP]

如果不存在httpd.ini,可以新建一個(gè),添加如下代碼:

[ISAPI_Rewrite]

# 3600 = 1 hour
CacheClockRate 3600

RepeatLimit 32

RewriteCond Host: ^xxxx\.com$
RewriteRule (.*) http\://www\.xxxx\.com$1 [I,RP]


2、若網(wǎng)站服務(wù)器是Apache,新建.htaccess文件,輸入下列內(nèi)容(需要開啟mod_rewrite)

在.htaccess文件開始處加入一下規(guī)則

RewriteCond %{http_host} ^xxxx.com [NC]
RewriteRule ^(.*)$ http://www.xxxx.com/$1 [R=301,L]

附、httpd.ini多域名301跳轉(zhuǎn)代碼
[ISAPI_Rewrite]
# 3600 = 1 hour
CacheClockRate 3600
RepeatLimit 32
RewriteCond Host: ^xxxx2\.com$
RewriteRule (.*) http\://www\.xxxx2\.com$1 [I,RP]
RewriteCond Host: ^www\.xxxx2\.com$
RewriteRule (.*) http\://www\.xxxx1\.com$1 [I,RP]
RewriteCond Host: ^xxxx1\.com$
RewriteRule (.*) http\://www\.xxxx1\.com$1 [I,RP]

希望能幫到有困難的人~

詞條統(tǒng)計(jì)

  • 瀏覽次數(shù):3027
  • 編輯次數(shù):0次歷史版本
  • 最近更新:2014-10-10
  • 創(chuàng)建者:zjadmin
  • 相關(guān)詞條

    相關(guān)問答

    相關(guān)百科

    相關(guān)資訊