如何禁用 chrome 的缓存。我不使用缓存,所以我只注册一个会话变量,但它会在每次打开时记住会话变量。
此代码有效,但是当我关闭并打开 chrome 时,它不起作用
<?php
if (!isset($_SESSION["mobile_redirect"]))
{
$_SESSION['mobile_redirect']=1;
header("Location:http://".$this->otherSiteData['servername']);
exit;
}
?>