读取 PHP CGI 中的 If-Modified-Since 标头

发布于 2024-08-15 10:03:19 字数 253 浏览 6 评论 0原文

我的 PHP 脚本取决于能否读取 If-Modified-Since 标头的值(是的,我知道如何执行此操作)。

当我使用 PHP 作为 mod_php 时,它工作正常,但现在我已经切换到 suPHP (CGI),看来 Apache 本身会处理包含此标头的请求,而根本不会将它们转发给 PHP。

这很愚蠢,因为 Apache 不可能知道我动态生成的 CSS 文件(即我的脚本生成的文件)何时发生更改。在这方面我该如何约束 Apache?

My PHP script depends on being able to read the value of the If-Modified-Since header (yes, I know how to do this).

It worked correctly when I used PHP as mod_php, but now that I've switched to suPHP (CGI), it appears Apache itself handles requests that contain this header, without forwarding them to PHP at all.

This is silly, because Apache can't possibly know when my dynamically generated CSS file (that is what my script makes) is changed. How can I discipline Apache in this regard?

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

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

发布评论

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

评论(1

树深时见影 2024-08-22 10:03:19

它位于变量 $_SERVER['HTTP_IF_MODIFIED_SINCE'] 中。

我在脚本中使用它,以及诸如 HTTP_IF_MODIFIED_SINCE 之类的有趣内容。 ;-)

再见!

It's located in the variable $_SERVER['HTTP_IF_MODIFIED_SINCE'].

I use it in a script, along with fun stuff like HTTP_IF_MODIFIED_SINCE. ;-)

Ciao!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文