create php file for redirect code example
Example: How do I make a redirect in PHP?
header("Location: http://example.com/redirect_page.php");
die(); //Force the script to quit, or you would raise an error...
header("Location: http://example.com/redirect_page.php");
die(); //Force the script to quit, or you would raise an error...