Remove index.php from URL
I've uploaded a flat file CMS called statamic,
Through my .htaccess file, I try to remove the "index.php"-part from my URL, but it won't work. Here's my code in the .htaccess file:
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php [QSA,L]
My server administrator says the Nginx settings are ok. Statamic support says the .htaccess file should do the job. But it still doesn't work.
Have you got any idea what I could do?
Thanks for reading.