301和302跳转
时间:2021-06-24 16:01:57
收藏:0
阅读:12
php 301重定向的方法
header(‘HTTP/1.1 301 Moved Permanently‘);
header(‘Location: https://www.baidu.com‘);
php 302重定向的方法
header(‘Location: https://www.baidu.com‘);
原文:https://www.cnblogs.com/brooklyndawndaisy-20171125/p/14926169.html
评论(0)