blob: ccfcc15674c5158f593254e554ad2aada70c6fac [file] [log] [blame]
<?php
// Entry point and will redirect to redirect2.php then final.html.
header('HTTP/1.1 307 Temporary Redirect');
header('Expires: Thu, 01 Dec 2003 16:00:00 GMT');
header('Cache-Control: no-cache, must-revalidate');
header('Pragma: no-cache');
header('Location: redirect2.php');
?>