Possible Duplicate:
Make post title as a slug in url by mod rewrite
I have a url:
http://www.example.com/details.php?var=100&p=99
I want to rewrite it as using mod rewrite
http://www.example.com/100/99
I am using following rewite_rule:
RewriteRule ^([0-9]+)/([0-9]+) $ http://www.example.com/details.php?var=$1&p=$2 [L]
but it is not working. If I type http://www.example.com/100/99 it redirects to http://www.example.com/details.php?var=100&p=99 url.
Please help me in this issue. Thanks