redirect php manual code example
Example 1: php redirect
header("Location: http://example.com/myOtherPage.php");
die();
Example 2: php header
header ( string $header [, bool $replace = TRUE [, int $http_response_code ]] ) : void
header("Location: http://example.com/myOtherPage.php");
die();
header ( string $header [, bool $replace = TRUE [, int $http_response_code ]] ) : void