I'm trying to redirect a query string from a URL (?u=user) to a static URL (/user).
So for example:
I currently have it set-up so that if someone types /user in at the end of the URL you'll see the profile page of that user.
What I want is to redirect the http://domain.com/profile.php?u=user to http://domain.com/user
How would I do this?
Thanks, in advance!