Title says it all im having trouble rewriting the following urls
The original URL:
example.com/user.php?id=username
The rewritten URL:
example.com/username
My .htcacess
code is:
RewriteEngine On
RewriteRule ^([^/]*)$ /user.php?id=$1 [L]
What the issue?