We plan to move our site which is myolddomain.com/index.php?id=something to newdomain.com/aff/index.php?id=something Is there a way to do 301 redirect with a wildcard which would keep the $_GET variable in the URL intact? Thank you, Chad
Try this: <? $url = $_GET['id']; @header("Location:http://newdomain.com/aff/index.php?id=$url"); ?> HTML: