<!DOCTYPE html >
<html>
<head>
<title>Redirection</title>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
</head>
<body>

<?php

$url = file_get_contents("saved.url");
echo "<p>Redirecting to <a href=\"$url\">$url</a>...</p>";
echo "<meta http-equiv=\"refresh\" content=\"2; url=$url\" />"

?>

</body>
</html>