I want to make pretty url out of:
http://www.example.com/search-destroy?id=nameOfCharacter
I have this mod_rewrite:
RewriteRule ^search-destroy/([^/]*)$ /search-destroy?id=$1 [L,QSA]
That generates this urL:
http://www.example.com/search-destroy/nameOfCharacter.php
I want to leave out the .php extension here, how would the mod_rewrite look?