I am trying to rewrite all to index.asp and the rules that I am using are:
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^.*$ /index.asp [NC,L,QSA]
Now it rewrites all except existing pages, for example if I navigate to /blabla it will rewrite to /index.asp, but if I navigate to /cart.asp it just open cart.asp, is there anything else that I am missing?
Thanks