RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteCond %{HTTP_HOST} ^(www\.)?grantedsecurity\.com
RewriteRule ^(.*)$ https://www.grantedsecurity.com/$1 [R,L]
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteCond %{REQUEST_URI} !^/lofInfo
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
所以我尝试了这段代码,我试图拥有此文件夹文件
https://www.grantedsecurity.com/logInfo/log.php
我不希望该文件具有强制SSL文件,如何修复我的htaccess文件,以不对该文件强制使用https。