I have a form which when submitted goes to the url \"signup.php?username=xx\" where xx is an input field. Instead of this I was wondering if I could get it to go to the foll
Try this:
RewriteRule ^signup/([^/]*)$ /signup.php?username=$1 [L]