当前位置:首页 > PHP教程 > php应用 > 列表

php中重定向网页跳转方法总结案例教程

发布:smiling 来源: PHP粉丝网  添加日期:2022-05-11 10:50:28 浏览: 评论:0 

这篇文章主要介绍了php中重定向网页跳转方法总结案例教程,本篇文章通过简要的案例,讲解了该项技术的了解与使用,以下就是详细内容,需要的朋友可以参考下。

PHP中重定向网页跳转页面的方法(共三种)

第一种:利用header()函数进行重定向,这也是我用的较多的。(注意!locationhe和“:”之间不能有空格,否则无作用!)

  1. <?php 
  2.     header('content-type:text/html;charset=uft-8); 
  3.     //重定向页面 
  4.     header('location:index.php'); 
  5.  ?> 

第二种:利用HTML 头部中的 meta标签,定义http-equiv=refresh 和content=”跳转花费的时间(秒为单位);url=跳转地址”

  1. <!DOCTYPE html> 
  2. <html lang="en"> 
  3. <head> 
  4.     <meta charset="UTF-8"> 
  5.     //跳转页面,跳转时间:3秒钟,目标地址:index.php 
  6.     <meta http-equiv="refresh" content="3;url=index.php"> 
  7.     <title>skip...</title> 
  8. </head> 

或者

  1. <?php 
  2. header('content-type:text/html;charset=utf-8'); 
  3. $url='index.php'
  4.  ?> 
  5.  <!DOCTYPE html> 
  6. <html lang="en"
  7. <head> 
  8.     <meta charset="UTF-8"
  9.     //跳转页面,跳转时间:2秒钟,目标地址:index.php 
  10.     <meta http-equiv="refresh" content="2;url=<?php echo $url; ?>"
  11.     <title>skip...</title> 
  12. </head> 

第三种:利用javascript进行跳转

  1. <?php 
  2. header('content-type:text/html;charset=utf-8'); 
  3. $url='index.php'
  4. //立即跳转至目标页面 
  5. echo <script>window.location.href='$url';</script>; 
  6. ?> 

以上就是PHP中重定向页面的三种方法。

Tags: php重定向网页跳转

分享到: