Answers for "url rewrite redirect php"

PHP
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

Browse Popular Code Answers by Language