Answers for "php redirect to another page without changing url"

PHP
3

php redirect to url

header("Location: http://example.com/myOtherPage.php");
die();
Posted by: Guest on July-27-2020
0

php permanent redirect to url

// Redirect page perminately
header("HTTP/1.1 301 Moved Permanently");
header("Location: https://www.yourfancynewsite.com/mypage.php");
exit();
Posted by: Guest on February-26-2021

Code answers related to "php redirect to another page without changing url"

Browse Popular Code Answers by Language