<?php
/* Redirect browser */
header(“Location: http://webserverpage.com/”);
/* Make sure that code below does not get executed when you redirect. */
exit;
?>
How to create a php redirection script.
Leave a reply
<?php
/* Redirect browser */
header(“Location: http://webserverpage.com/”);
/* Make sure that code below does not get executed when you redirect. */
exit;
?>