我用这个代码
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}
将所有请求重定向到 HTTPS,这没关系。
现在我想要同样的东西,除了一个文件 index810.php
当我这样写
RewriteCond %{HTTPS} off
RewriteCond %{REQUEST_URI} !^ index810.php
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}
我收到太多重定向,任何建议。
先感谢您