Several days ago I had a question about removing index.php from the address bar, so the address of the page looks shorter and better. The shortest solution of this problem w
I had the same problems but my htacces was like this:
RewriteEngine on RewriteRule .* index.php [NC]
Just change NC for L and everything works fine.
Final code:
RewriteEngine on RewriteRule .* index.php [L]