咨询热线:4006-75-4006
售前:9:00-23:30 备案:9:00-18:00 技术:7*24h
阿D自己今天动手写了一遍设置301的规则,现在与童鞋们进行分享
可以根据您的需要,将代码加入到httpd.ini文件中:
1、将单个域名a.com重定向到其他空间的b.com
[ISAPI_Rewrite]
RewriteCond Host: ^(?:www.)?a.com$
RewriteRule ^/(.*)$ http://www.landui.com/$1 [L,RP]
2、将多个域名a.org b.org 重定向到其他空间的www.landui.com
[ISAPI_Rewrite]
RewriteCond Host: ^(?:www.)?(?:a.org|a.org)$
RewriteRule ^/(.*)$ http://www.landui.com/$1 [L,RP]
3、不带www域名landui.com重定向到带www域名www.landui.com
[ISAPI_Rewrite]
RewriteCond Host: ^landui.cn$
RewriteRule ^/(.*)$ http://www.landui.com/$1 [L,RP]