Php automatic forwarding page

From DreamHost

Jump to: navigation, search

The following code saved as index.php will automatically redirect your page to a new URL.

<?php
header("HTTP/1.1 301 Moved Permanently");
header("Location: http://newurl.com/newpage/");
exit();
?>
Personal tools