In an application I want all users to start at index.php. So I want to redirect all direct URLs to other pages to this file.
When I use the following syntax, only the non-existing files are rewritten, but I want to redirect the existing URLs too.
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php?path=$1 [NC,L,QSA]
RewriteCond?