方法:1、用“header('HTTP/1.1 301 Moved Permanently');header('Location:URL地址');”语句跳转;2、用“header('Location:URL',true,301)”语句跳转。
本教程操作环境:windows7系统、PHP7.1版,DELL G3电脑
php实现301重定向跳转
网上搜了一圈都是用
header('HTTP/1.1 301 Moved Permanently');
再配合
header('Location: https://www.php.cn');
完成的。
总感觉一句话干不完,再加上HTTP/2
啥的都出来许久了还写了个HTTP/1.1
看着不太爽,当然写成HTTP/2
或是HTTP/1.0
也没事,但是不管写什么总之有种表述不清的感觉(比如写的HTTP/1.1
实际访问时是HTTP/2
——访问的时候该HTTP/2
的时候还是HTTP/2
也没问题不会乱变HTTP/1.1
)
又去 php.net 寻觅一番,发现 Header 可以这样用
header ( string $header [, bool $replace = TRUE [, int $http_response_code ]] )
这就好办了,一句话
header('Location: https://www.php.cn', true, 301);
完事,哈哈哈哈哈哈
额外再提一句,如果要自适应HTTPS/HTTP
的话,这样就可以了:
header('Location: //www.php.cn', true, 301);
推荐学习:《PHP视频教程》
Atas ialah kandungan terperinci php怎么实现301重定向跳转. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!