php中重定向网页跳转方法总结案例教程
发布:smiling 来源: PHP粉丝网 添加日期:2022-05-11 10:50:28 浏览: 评论:0
这篇文章主要介绍了php中重定向网页跳转方法总结案例教程,本篇文章通过简要的案例,讲解了该项技术的了解与使用,以下就是详细内容,需要的朋友可以参考下。
PHP中重定向网页跳转页面的方法(共三种)
第一种:利用header()函数进行重定向,这也是我用的较多的。(注意!locationhe和“:”之间不能有空格,否则无作用!)
- <?php
- header('content-type:text/html;charset=uft-8);
- //重定向页面
- header('location:index.php');
- ?>
第二种:利用HTML 头部中的 meta标签,定义http-equiv=refresh 和content=”跳转花费的时间(秒为单位);url=跳转地址”
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- //跳转页面,跳转时间:3秒钟,目标地址:index.php
- <meta http-equiv="refresh" content="3;url=index.php">
- <title>skip...</title>
- </head>
或者
- <?php
- header('content-type:text/html;charset=utf-8');
- $url='index.php';
- ?>
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- //跳转页面,跳转时间:2秒钟,目标地址:index.php
- <meta http-equiv="refresh" content="2;url=<?php echo $url; ?>">
- <title>skip...</title>
- </head>
第三种:利用javascript进行跳转
- <?php
- header('content-type:text/html;charset=utf-8');
- $url='index.php';
- //立即跳转至目标页面
- echo <script>window.location.href='$url';</script>;
- ?>
以上就是PHP中重定向页面的三种方法。
Tags: php重定向网页跳转
- 上一篇:PHP之使用swoole统计在线人数和ID案例讲解
- 下一篇:最后一页
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)