<?php
$goto = "index.shtml";
header("HTTP/1.0 301 Moved Permanently");
header("Location: $goto");
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title> This Page Has Been Moved! </title>
<meta http-equiv="refresh" content="0;URL=<?=("$goto")?>">
</head>

<body>
<font color="red"><b>This Page Has Been Moved!</b></font><br><br>
You will automatically be redirected to the <a href="<?=("$goto")?>">new page</a>.  If not so please <a href="<?=("$goto")?>">Click Here!</a>.

</body>
</html>