Answers for "php permanent redirect"

PHP
28

php redirect

//PHP redirect
header("Location: https://www.codegrepper.com/my-redirect-page.php");
die();
Posted by: Guest on August-06-2019
3

php 301 redirect

<?php // Permanent 301 Redirect via PHP
	header("HTTP/1.1 301 Moved Permanently");
	header("Location: http://domain.tld/new/location/");
	exit();
?>
Posted by: Guest on September-28-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 permanent redirect"

Browse Popular Code Answers by Language