How to do the automatic redirect in .htaccess
my urlrewrite worrking fine ,
i want to redirect automatically if user enter the url as query string ,
i dont want to display query string any time,
if query string meets the urlrewrit syntax, then system should automatically redirect
this is my snippet
RewriteRule ^index/result_id/([0-9]+)/?$ index.php?result_id=$1
but the thing is , if user try with index.php?result_id=20 then page display with query string , but i dont want somthing like this,
even if user entered the index.php?result_id=20 then system sutomatically should show the url as index/result_id/20
IS it possible wiht .htaccess
Any ideas