blob: 7e4d63cc54f03e16c22cdf868cb9d36ee5426ec9 [file] [log] [blame]
<?php
/* Redirect to a different page in the current directory that was requested */
$host = $_SERVER['HTTP_HOST'];
$uri = rtrim(dirname($_SERVER['PHP_SELF']), '/\\');
$extra = 'getstarted';
header("Location: http://$host$uri/$extra");
exit;
?>