I create a .htaccess to redirect all url to index.php It works for url that doesn't exist but for other url (which exists) it doesn't work & I don't know why. Isearch & I tried all configuration but it seems it doest work.
Here my .htaccess :
RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php [NC,L]
Anyone have a solution ?