CodeIgniter 的 Tank Auth 插件中的缓存

发布于 2024-12-13 01:31:59 字数 97 浏览 0 评论 0原文

您好,我想知道你们是否对 Tank Auth 有疑问。登录并回击后,登录表单仍然显示。我想知道是否有像重定向这样的解决方法?

谢谢,

xxxxxx

Hi I was wondering if you guys have a problem with Tank Auth. After logging in and hits back the login form still shows up. I wonder if there's a workaround for that like redirection?

Thanks,

Xxxxxx

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

人间☆小暴躁 2024-12-20 01:31:59

该页面正在被缓存,请在登录控制器中尝试类似的操作来阻止它:

$this->output
    ->set_header('Last-Modified: '.gmdate("D, d M Y H:i:s").' GMT')
    ->set_header('Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0')
    ->set_header('Pragma: no-cache')
    ->set_header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");

The page is being cached, try something like this in your login controller to prevent it:

$this->output
    ->set_header('Last-Modified: '.gmdate("D, d M Y H:i:s").' GMT')
    ->set_header('Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0')
    ->set_header('Pragma: no-cache')
    ->set_header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文