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