0
我有一個文件夾中當前的htaccess坐在http://www.mydomain.com/dev強制所有頁面爲https htaccess的同時保持當前規則
RewriteEngine On
RewriteBase/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /dev/index.php [L]
我試圖改變我的最後一行:
RewriteRule ^(.*)$ https://www.mydomain.com/dev/index.php [L]
然而,沒有工作,該網站拋出了一個ISE。一切都需要通過mydomain.com/dev/index.php來運行。