how do I rewrite this url with .htaccess mod_rewrite
http://55.100.10.66:81/var/class/tag?isAjax=true&id=189&key=eJwVxzEOwjAMB&callback=_prototypeJSONPCallback_0
to
http://55.100.10.66:81/index.php/var/class/tag?isAjax=true&id=189&key=eJwVxzEOwjAMB&callback=_prototypeJSONPCallback_0
Amongst a lot of things I tried the below which doesn't work
RewriteRule ^var/class/tag(.*) /index.php/var/class/tag$1 [L,NC,QSA]
Thanks!
This is the solution
RewriteCond %{REQUEST_URI} ^/var/class/tag(.*)
RewriteRule .* index.php [L]