Php automatic forwarding page
From DreamHost
The following code saved as index.html will automatically redirect your page to a new URL.
<?
$URL="http://new.url.to/forwart/them/to.html";
header ("Location: $URL");
?>
<html>
<head>
<title>Title of page while loading occurs.</title>
</head>
<body>
</body>
</html>

