I have a directory named 'appfolder'.
I have used the following .htaccess for using for every unknown file to use index.php
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
If I open domain.com/appfolder it gives me the default apache forbidden page instead of using index.php
How can I also set to use index.php for directories in .htaccess