Possible Duplicate:
mod_rewrite user id error
I would like this:
example.com/profile.php?ID=username
to rewrite to this:
example.com/username
I have tried this, which seems to do nothing:
RewriteEngine on
RewriteRule ^([a-z]{2,2})/([a-zA-Z0-9_-]+)$ profile.php?ID=$1 [QSA]
What am I doing wrong?
Try with this