nginx 状态码 200 和 304

发布于 2024-11-03 07:41:20 字数 652 浏览 1 评论 0原文

我正在使用 nginx + 乘客。我试图理解 nginx 响应 200 和 304。这两者意味着什么?有时,它会返回 304,而其他的则仅返回 200。阅读 YUI博客,看来浏览器需要标头“Last-Modified”来与服务器验证。我想知道为什么浏览器需要验证最后修改日期。这是我的 nginx 配置:

location / {
    root /var/www/placexpert/public;   # <--- be sure to point to 'public'!
    passenger_enabled on;
    rack_env development;
    passenger_use_global_queue on;

    if ($request_filename ~* ^.+\.(jpg|jpeg|gif|png|ico|css|js|swf)$) {
        expires max;
        break;
    }
}

How will I add header "Last-Modified" to the static files?我应该设置哪个值?

I'm using nginx + passenger. I'm trying to understand the nginx response 200 and 304. What does this both means? Sometimes, it responses back in 304 and others only 200. Reading the YUI blog, it seems browser needs the header "Last-Modified" to verify with the server. I'm wondering why the browser need to verify the last modified date. Here is my nginx configuration:

location / {
    root /var/www/placexpert/public;   # <--- be sure to point to 'public'!
    passenger_enabled on;
    rack_env development;
    passenger_use_global_queue on;

    if ($request_filename ~* ^.+\.(jpg|jpeg|gif|png|ico|css|js|swf)$) {
        expires max;
        break;
    }
}

How would I add the header "Last-Modified" to the static files? Which value should I set?

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

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

发布评论

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

评论(1

浅唱ヾ落雨殇 2024-11-10 07:41:20

试试这个。

if (...){
    expires max;
    add_header Last-Modified $sent_http_Expires;
    break;
}

Try this.

if (...){
    expires max;
    add_header Last-Modified $sent_http_Expires;
    break;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文