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




第一種情況,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]
希望能幫到有困難的人~