1
下面是我的.htaccess文件。URL重定向導致循環
RewriteEngine On
RewriteCond %{SCRIPT_FILENAME} !-d
RewriteRule ^([^\.]+)$ $1.php [L]
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
RewriteRule ^axiom/?$ /axiom/publish.htm [L]
這導致重定向循環。如果我註釋掉
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
頁面將load.I'm不知道在哪裏我的錯誤,但我猜想它在這裏的某個地方。
什麼是重寫規則^的'目的$ HTTPS(*): //%{HTTP_HOST}%{REQUEST_URI} [L,R = 301]'規則? – anubhava
將http請求重定向到https。 –