我在我的.htaccess中有以下 - 乾淨的網址聲明和https重定向都單獨工作,但放在一起導致連續重定向錯誤(此服務器重定向一種永遠不會完成的方式)。清理網址和https重定向衝突使用YII的.htaccess
這裏是我的.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]
任何想法如何,我可以解決這個問題?
謝謝
如果您翻轉Https/index.php規則,會發生什麼情況Https是第一個呢? – acorncom