我的 .htaccess 中有以下内容 - 干净 url 的声明和 https 重定向都可以单独工作,但放在一起会导致持续重定向错误(此服务器正在以永远不会完成的方式重定向)。
这是我的.htacess:
RewriteEngine on
# if a directory or a file exists, use it directly
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# otherwise forward it to index.php
RewriteRule . index.php
# force to use https
#RewriteCond %{HTTPS} !=on
#RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
知道我该如何解决这个问题吗?
谢谢