当前位置: > Linux服务器 > apache >

apache多域名301跳转

时间:2014-07-28 11:10来源:linux.it.net.cn 作者:it

centos apache多域名301跳转 ,具体做法:

在空间上加一个文件: .htaccess(注意h前的点不要漏了),记得放到网站主目录下

 

view source 
 
print?
1 RewriteEngine On
2 RewriteCond %{HTTP_HOST} ^centoscn.com [NC,OR]
3 RewriteCond %{HTTP_HOST} ^www.centoscn.com [NC]
4 RewriteRule ^(.*)$ http://www.helloswift.com.cn/$1 [L,R=301]

(责任编辑:IT)
------分隔线----------------------------