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]