php redirect to other page code example
Example 1: how to redirect with php
<?php
header("Location: (redirect url)");
?>
Example 2: php redirect to page
header("Location: /");
exit();
Example 3: how to redirect to another page in php
<?php header("Location: anotherDirectory/anotherFile.php"); ?>
Example 4: how to redirect to another page in php
<?php header("Location: http://www.redirect.to.url.com/"); ?>