kyle
28th July 2006, 12:00 AM
Hi,
Here is a basic php redirection script.
Only change the value between '' next to $page_url.
Change this to what ever you want the script to redirect to, for example
http://www.serv.co.za/hosting.php
hosting.php
<?php
$page_url = 'home.html';
header ("Location: $page_url");
exit;
?>
Here is a basic php redirection script.
Only change the value between '' next to $page_url.
Change this to what ever you want the script to redirect to, for example
http://www.serv.co.za/hosting.php
hosting.php
<?php
$page_url = 'home.html';
header ("Location: $page_url");
exit;
?>