php如何实现自动跳转

来自:互联网
时间:2020-05-08
阅读:
免费资源网 - https://freexyz.cn/

php如何实现自动跳转

1、通过php内置函数“header”,将http响应头中的“Location”设置为要跳转的URL即可;

header('Location: http://www.bAIdu.com/');
exit();

2、可以在JavaScript代码中将“window.location.href”指向要跳转的URL即可。

echo "< script language='javascript' type='text/javascript'>"; 
echo "window.location.href='http://www.baidu.com/'"; 
echo "< /script>";
免费资源网 - https://freexyz.cn/
返回顶部
顶部