I can get basic tests to work with mod rewrite ie:
RewriteEngine on
RewriteRule ^index.php$ test.php
But what I’m really trying to accomplish is changing my dynamic url ie:
detail.php?id=1
to something like
detail-id-18.htm
Now this is what I have in place (that I thought would have worked) but of course nothing is happening:
RewriteEngine on
RewriteRule detail-id-(.*)\.htm$ detail.php?id=$1
Try this