服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|VB|R语言|JavaScript|易语言|vb.net|

服务器之家 - 编程语言 - PHP教程 - php中重定向网页跳转方法总结案例教程

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

2021-11-23 15:59yAngrUiLin啊 PHP教程

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

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

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

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

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

?
1
2
3
4
5
6
7
8
<!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>

或者

?
1
2
3
4
5
6
7
8
9
10
11
12
<?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进行跳转

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

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

到此这篇关于php中重定向网页跳转方法总结案例教程的文章就介绍到这了,更多相关php中重定向网页跳转内容请搜索服务器之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持服务器之家!

原文链接:https://blog.csdn.net/YAruli/article/details/78837240

延伸 · 阅读

精彩推荐