仅适用于特定文件夹的HTTPS

时间:2013-08-16 18:29:30

标签: .htaccess https

我有HTTPS证书,我不会将它限制为只有一个文件夹/ xcart /但我不希望从其他文件夹和页面访问。是否可以使用.htaccess进行此限制?

感谢

1 个答案:

答案 0 :(得分:0)

 RewriteCond %{HTTPS}  on
 RewriteCond %{REQUEST_URI}  !^/xcart/.*
 RewriteRule  (.*)  http://%{HTTP_HOST}/$1   [R,L]

 RewriteCond %{HTTPS}  off
 RewriteCond %{REQUEST_URI}  ^/xcart/.*
 RewriteRule  (.*)  https://%{HTTP_HOST}/$1    [R,L]