首页 > 开发 > PHP > 正文

php中的网页重定向——原创

2024-05-04 22:55:23
字体:
来源:转载
供稿:网友


收集最实用的网页特效代码!

             php中的网页重定向
                           ——爆米花
  在php中进行网页重定向一共有三种方法:
  1。利用header()重定向
  <?
    header("location: $url");
    exit;
  ?>
2。用嵌入html的<meta>标识重定向
<meta http-equiv="refresh" content="5; url=<? echo $url;?>>
3、用嵌入javascript的重定向
  <?
  echo "<!--<script language="javascript">";
  echo "location.href='$url'";
  echo "</script>-->";
  ?>

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表