php实现重定向的方法:1、【header()】函数,代码为【header('location:http://www.baidu.com')】;2、meta标签,代码为【echo '
php实现重定向的方法:
1、header()
函数;
header('location:http://www.baidu.com');
2、meta
标签;
echo '<meta http-equiv="refresh" content="1;url=http://www.baidu.com">';
3、script
标签;
echo '<script>window.location.href="http://www.baidu.com"</script>';
相关学习推荐:PHP编程从入门到精通
以上是php如何实现重定向?的详细内容。更多信息请关注PHP中文网其他相关文章!