php如何实现重定向?

php实现重定向的方法:1、【header()】函数,代码为【header('location:http://www.baidu.com')】;2、meta标签,代码为【echo '<meta http-equiv="refresh" 】。

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编程从入门到精通

Published by

风君子

独自遨游何稽首 揭天掀地慰生平

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注