Trying to redirect all traffic, so any url existing or not, will go to index.php but I'm having problems. Does anyone know how to do it?
Edit:
Found a solution that seems to be working:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
#RewriteCond %{REQUEST_FILENAME} !-f
#RewriteCond %{REQUEST_FILENAME} !-d
#RewriteRule . /index.php [L]
</IfModule>
RewriteRule !^index\.php$ /index.php [L,R=302]