How to create a php redirection script.


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


Leave a Reply