How to …PHP Redirect
Thursday, May 10th, 2007 Use an index.php file that will redirect the user to whatever URL you want .
< ? php
header("Location: http://www.whereUwant2Go.com/");
exit;
?>
Use an index.php file that will redirect the user to whatever URL you want .
< ? php
header("Location: http://www.whereUwant2Go.com/");
exit;
?>