I want to map every URL-request (which is not a file or directory) to testindex.html
My .htaccess contains this:
RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . testindex.html
But if i try
http://localhost/test/aaaaaaaa
then i get only a 404-Error.
Apache webserver is started and it exists a testindex.html in the test-project.