7 lines
159 B
PHP
7 lines
159 B
PHP
|
<?php
|
||
|
/* Redirect browser */
|
||
|
header("Location: http://www.speed-dreams.org");
|
||
|
/* Make sure that code below does not get executed when we redirect. */
|
||
|
exit;
|
||
|
?>
|