To create a redirect in PHP from one location to another create an index.php containing the following:
<?
header("location: <newlocation>");
?>
Such as:
<?
header("location: http://www.myotherdomain.com/");
?>
or
<?
header("location: thedirbelow/");
?>