0

关于 chrome 并让它执行 cgi(pl) 脚本是否有任何细节或特性。

我已将 awstats 添加到我的 apache2 服务器,它在 Firefox 和 IE 中运行良好。但是,当我在 chrome 中查看它时,它几乎就像在缓存请求一样。

无论我单击刷新多少次,它都只会显示旧数据。我已经在新选项卡中尝试过,但似乎无法让它触发脚本。

有什么建议么?

<Location "/awstats">
    AuthName "Private Site"
            AuthType basic
            AuthUserFile /etc/apache2/htusers
            Require valid-user
            Order deny,allow
            Deny from all
            Allow from 192.168.0.0/24
    Options +ExecCGI
</Location>

对于熟悉awstats的人来说,我可以选择不同的月份,而且好像执行一次。但在那之后,那个月被缓存到并且不会重新触发。看起来它确实在缓存,实际上不会刷新。

4

1 回答 1

1

看了之后(感谢plokuc)

https://superuser.com/questions/89809/how-to-force-refresh-without-cache-in-google-chrome

Chrome 的刷新机制似乎存在某种错误。目前唯一的解决方案似乎是手动清除缓存并重新加载页面,或者以隐身模式运行。

错误报告: http ://code.google.com/p/chromium/issues/detail?id=44122

于 2012-09-20T23:16:10.320 回答