My htaccess file :
DirectoryIndex index.php
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ ./index.php/$1 [L,QSA]
Options -Indexes
I can access my web with request HTTP not index.php but with request HTTPS can't. I have to add index.php to access with request HTTPS.
Any help is most appreciated ?