.htaccess rewrite rules doesn't work
Hello,
I've tried to follow this guide to enable the .htaccess on my server (so my .htaccess is working), but without luck.
Does anyone know where the problem can be?
Here is my htaccess file, it works on my localhost etc.
RewriteEngine on
RewriteCond $1 !^(index\.php|resources|robots\.txt)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L,QSA]
what are you trying to achieve with your .htaccess configuration ?
URLs that are beautiful.
For instance "index.php/hello/world" would become "hello/world" - so the index.php is removed.
This is working without problems on my localhost as mentioned, so I think it's some kind of server setup that is giving problems