PHP REDIRECTION

PHP
//PHP redirect
header("Location: https://www.codegrepper.com/my-redirect-page.php");
die();
< ?php header("Location: http://www.redirect.to.url.com/"); ?>header("Location: http://example.com/redirect_page.php");
die(); //Force the script to quit, or you would raise an error...
Source

Also in PHP: