php header(location code example
Example 1: php redirect
header("Location: http://example.com/myOtherPage.php");
die();
Example 2: header location in php
<?php
/*
This will redirect to facebook.com
*/
$url = "https://facebook.com.com";
header("Location: $url");
exit;
?>