我想避免在此文件夹及其所有内容上强制使用https

时间:2018-10-10 07:51:51

标签: .htaccess ssl https

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。

0 个答案:

没有答案