My question Is it possible to make a php page/script that can redirect a url and maintain the basic structure. What I'd like to do is redirect this url ( http://www.site.com/place/?L=users.profile&username=Kylie ) to ( http://www.site.com/place/?L=users.profile&id=Kylie ) Just changing input username to id so it can quarry id in the main script. Thank You Jay
RedirectMatch 301 ^place/\?L=users\.profile&username=(.+) place/?L=users.profile&id=$1 Code (markup): Save this as .htaccess in your root dir.