【发布时间】:2015-12-14 22:10:48
【问题描述】:
我使用了这个代码
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^(shop|university)(/.*)?$ https://%{HTTP_HOST}%{REQUEST_URI} [NC,R=301,L]
RewriteCond %{HTTPS} on
RewriteRule !^(shop|university)(/.*)?$ http://%{HTTP_HOST}%{REQUEST_URI} [NC,R=301,L]
</IfModule>
我想将http重定向到https两个类别(商店和大学),其他我想重定向到http
但是,在将规则安装到所有 https 后,我在 http 上转移了我,但从大学和商店放在了主页上。会是什么?
【问题讨论】: