<?php
$url['name'] = "http://site.com";
$url['anothername'] = "http://anothersite.com";
header("location: ".$url[$_GET['goto']]);
?>
quick and dirty, will make page.php?goto=name goto
http://site.com
can use htaccess to make it yoursite.com/goto/name.html if you want too.