Apache(不是浏览器)正在缓存我的文件

Apache(不是浏览器)正在缓存我的文件

浏览器不缓存它。它获取响应标头:

Accept-Ranges:bytes
Cache-Control:max-age=0, no-cache, no-store, must-revalidate
Connection:Keep-Alive
Content-Length:425169
Content-Type:application/javascript
Date:Thu, 09 Mar 2017 20:06:53 GMT
Expires:Wed, 11 Jan 1984 05:00:00 GMT
Keep-Alive:timeout=5, max=100
Last-Modified:Thu, 09 Mar 2017 20:06:49 GMT
Pragma:no-cache
Server:Apache/2.4.6 (CentOS) OpenSSL/1.0.1e-fips PHP/5.4.16

我在 Apache 中的设置:

<VirtualHost *:80>
    <Directory "/webapps/apps/devsite">
        Allow from all
        AllowOverride All
        Order allow,deny
    </Directory>
    DocumentRoot /webapps/apps/devsite
    ServerName testing.devsite.com
    SSLEngine off
</VirtualHost>

我的.htaccess:

<FilesMatch "\.(html|htm|js|css)$">
FileETag None
<IfModule mod_headers.c>
    Header unset ETag
    Header set Cache-Control "max-age=0, no-cache, no-store, must-revalidate"
    Header set Pragma "no-cache"
    Header set Expires "Wed, 11 Jan 1984 05:00:00 GMT"
</IfModule>
</FilesMatch> 

以下加载新的非缓存版本:

  1. 在服务器上运行:rm -f /webapps/apps/devsite/scripts/script.js
  2. 在网络浏览器中重新加载(从而得到 404)
  3. 将文件复制回服务器
  4. 在浏览器中重新加载

以下确实加载了旧的缓存版本!:

  1. 在服务器上运行:rm -f /webapps/apps/devsite/scripts/script.js
  2. 将文件复制回服务器注意:我还没有在浏览器中重新加载)
  3. 在浏览器中重新加载

这表明 Apache 正在以某种方式缓存它,直到它收到新请求并且找不到它为止。为什么?我该如何解决?

答案1

问题是它使用了内核的 SendFile,导致它错过了正在更改的文件。添加以下内容可以修复它:

EnableSendfile off

(“文件”为小写)

http://httpd.apache.org/docs/2.2/mod/core.html#enablesendfile

相关内容