Answers for "header 301 redirect location"

PHP
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

Permanent 301 redirect

<?php
//* Permanently redirect page
header("Location: new_page.php",TRUE,301);
?>
Posted by: Guest on April-10-2022

Browse Popular Code Answers by Language