Answers for "how to redirect the url to perticular section of the page 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

Code answers related to "how to redirect the url to perticular section of the page php"

Browse Popular Code Answers by Language