Quote:
Originally Posted by acctman
|
So what are you trying to do here, exactly... push a user from profile.php?user=blah to /blah? If so, just use a
header("Location: http://www.qwerty.com/$_GET[user]")
or similar in your php page.
If you're trying to map /john (or /john/) to profile.php?user=john, that gets a little more interesting, because then ANY subdirectory would have to be considered a profile request. Is that what you're after?