php怎么设置页面不能后退
php设置页面不能后退的方法:1、打开相应的PHP页面;2、通过设置代码“header("Cache-control:no-cache,no-store,must-revalidate");”实现禁止页面后退。
本文操作环境:Windows7系统、PHP7.1版,DELL G3电脑
php怎么设置页面不能后退?
PHP header()禁止页面后退
代码如下:
header("Cache-control:no-cache,no-store,must-revalidate"); header("Pragma:no-cache"); header("Expires:0"); header('Location:http://www.xxx.com');
相关介绍:
header() 函数向客户端发送原始的 HTTP 报头。
认识到一点很重要,即必须在任何实际的输出被发送之前调用 header() 函数(在 PHP 4 以及更高的版本中,您可以使用输出缓存来解决此问题):
<html> <?php // 结果出错 // 在调用 header() 之前已存在输出 header('Location: http://www.example.com/'); ?>
语法
header(string,replace,http_response_code)
推荐学习:《PHP视频教程》