美文网首页
php跳转页面实现方法

php跳转页面实现方法

作者: 七百年前 | 来源:发表于2016-05-06 15:26 被阅读1017次
  1. header("Location: http://bbs.44.net");

2.页面一秒后跳转 < meta http-equiv="refresh" content="1;url=http://bbs.44.net">
< ?php
$url = "http://33"; ?>
< html>
< head>
< meta http-equiv="refresh" content="1;
url=< ?php echo $url; ?>">
< /head>
< body>
页面只停留一秒……
< /body>
< /html>

3.用JavaScript执行跳转
< ?php
$url = "http://bbs.44.net";
echo "< script language='javascript'
type='text/javascript'>";
echo "window.location.href='$url'";
echo "< /script>";
?>

相关文章

网友评论

      本文标题:php跳转页面实现方法

      本文链接:https://www.haomeiwen.com/subject/obdjrttx.html