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

2021-03-27 07:26

阅读:626

YPE html>

标签:java   方法   doctype   uft   声明   index   lang   ext   art   

hhw:用第一种方法可以将:http://127.0.0.1/tp5  简化为  http://127.0.0.1   ,即将www目录下的index.php文件写入第一种中的php代码:

header(‘content-type:text/html;charset=uft-8‘);
header(‘location:tp5/index.php‘);
?>

 或直接:

header(‘content-type:text/html;charset=uft-8‘);
header(‘location:tp5/public/index.php‘);
?>

 

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

header(‘content-type:text/html;charset=uft-8);
//重定向页面
header(‘location:index.php‘);
?>
第二种:利用HTML 头部中的 meta标签,定义http-equiv=refresh 和content=”跳转花费的时间(秒为单位);url=跳转地址”





//跳转页面,跳转时间:3秒钟,目标地址:index.php

skip...


或者

header(‘content-type:text/html;charset=utf-8‘);
$url=‘index.php‘;
?>




//跳转页面,跳转时间:2秒钟,目标地址:index.php

skip...


第三种:利用javascript进行跳转

header(‘content-type:text/html;charset=utf-8‘);
$url=‘index.php‘;
//立即跳转至目标页面
echo ;
?>

以上就是PHP中重定向页面的三种方法。
————————————————
版权声明:本文为CSDN博主「yAngrUiLin啊」的原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/yaruli/java/article/details/78837240

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

标签:java   方法   doctype   uft   声明   index   lang   ext   art   

原文地址:https://www.cnblogs.com/huhewei/p/12633701.html


评论


亲,登录后才可以留言!