我希望我的整个网站都使用HTTPS,但主页除外,因为那里有非安全的脚本。
该网站正在使用Apache / Slim。
内部/etc/apache2/sites-available/000-default.conf
:
RewriteCond "%{REQUEST_URI}" “!=/”
RewriteRule . https://%{HTTP:Host}%{REQUEST_URI} [R=302,S=1]
#the usual Slim rule:
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule . /index.php
(注意S=1
。如果匹配,应该跳过下一条规则。)
问题:我没有被重定向,我的css包含没有被提供(我只是获得了主页html的副本)。有什么建议吗?