PHP中重定向网页跳转页面的方法(共三种)
hhw:用第一种方法可以将:http://127.0.0.1/tp5 简化为 http://127.0.0.1 ,即将www目录下的index.php文件写入第一种中的php代码: <?php header('content-type:text/html;charset=uft-8'); header('location:tp5/index.php'); ?> 或直接: <?php header('content-type:text/html;charset=uft-8'); header('location:tp5/public/index.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"> //跳转页面,跳转时间