I am trying to redirect a page on an old website to a page on a new website. I want to redirect a page such that: www.oldwebsite.com/page.php?id=1 becomes www.newwebsite.com/page.php?id=1 I have been searching around the internet but I have not been able to find the solution. I want to redirect just this one page, not the whole site.
nevermind, I figuired it out. For anyone else out there: redirect 301 /page.php http://www.newsite.com/page.php I thought you had to do something special to bring over the query string, but apparently you do not.