Tags
PHP
Asked 2 years ago
30 Jun 2021
Views 189
Ila

Ila posted

How to make a 301 redirect from PHP?

How to make a 301 redirect from PHP?
hanuman

hanuman
answered Jun 30 '21 00:00

How to create a 301 redirect from PHP?
Answer ::


header('Location: www.example.com/index.html', true, 301);
exit;


use PHP header function
joomler

joomler
answered Jun 30 '21 00:00

301 redirect by PHP header function

header("HTTP/1.1 301 Moved Permanently");
header("Location: hello.php");
header("Connection: close");
exit();
Post Answer