-
- 新聞中心
- 公司新聞
- 行業(yè)新聞
- 公司風(fēng)采
- 休閑一下
添加微信咨詢
通過URL重寫規(guī)則語句實(shí)現(xiàn)301重定向
在網(wǎng)站運(yùn)營的過程中,有時(shí)因一些不同的訪問要求(譬如使用http://1.www.gxjldt.com訪問的是http://www.www.gxjldt.com/1,使用http://2.www.gxjldt.com訪問的是http://www.www.gxjldt.com/2),需對網(wǎng)站訪問進(jìn)行重定向設(shè)置。最直接最有效的做法是通過URL重寫規(guī)則實(shí)現(xiàn)。下面給出URL重寫實(shí)現(xiàn)重定向的的一些常用范例。
注意:在設(shè)置301重定向之前務(wù)必備份相應(yīng)目錄下的.htaccess文件。(Windows主機(jī)是在/htdocs目錄下,Linux主機(jī)是在根目錄下)
1.重定向www.gxjldt.com到www.www.gxjldt.com
RewriteEngine On
RewriteCond %{HTTP_HOST} !^www.www.gxjldt.com$ [NC]
RewriteRule ^(.*)$ http://www.www.gxjldt.com/$1 [L,R=301]
2.重定向www.www.gxjldt.com到www.gxjldt.com
RewriteEngine On
RewriteCond %{HTTP_HOST} !^www.gxjldt.com$ [NC]
RewriteRule ^(.*)$ http://www.gxjldt.com/$1 [L,R=301]
3.重定向oldwww.gxjldt.com到www.newwww.gxjldt.com
RewriteEngine On
RewriteCond %{HTTP_HOST} !oldwww.gxjldt.com$ [NC]
RewriteRule ^(.*)$ http://www.newwww.gxjldt.com/$1 [L,R=301]
4.重定向oldwww.gxjldt.com 到 newwww.gxjldt.com
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} !oldwww.gxjldt.com$ [NC]
RewriteRule ^(.*)$ http://newwww.gxjldt.com/$1 [L,R=301]
5.重定向www.gxjldt.com/file/file.php 到 otherwww.gxjldt.com/otherfile/other.php
RewriteEngine On
RewriteCond %{HTTP_HOST} ^www.www.gxjldt.com$
RewriteRule ^file/file.php$ http://www.otherwww.gxjldt.com/otherfile/other.php [R=301,L]
