私の .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]
どうすればこれを解決できますか?
ありがとうございました