- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如果我这样做:
<IfModule mod_expires.c>
<FilesMatch "\.(ico|pdf|flv|jpg|jpeg|png|gif|swf|mp3|mp4|css|js|php)$">
ExpiresActive On
ExpiresDefault "access plus 30 days"
</FilesMatch>
</IfModule>
<IfModule mod_expires.c>
<FilesMatch "\.(ico|pdf|flv|jpg|jpeg|png|gif|swf|mp3|mp4|css|js|php)$">
ExpiresActive On
Header set Expires "Thu, 18 Jan 2012 20:00:00 GMT"
</FilesMatch>
</IfModule>
IfModule mod_expires.c
为真)最佳答案
好的,我从官方文档 here 中得到了它:
Note that if you use a modification date based setting, the Expires header will not be added to content that does not come from a file on disk. This is due to the fact that there is no modification time for such content.
关于Apache:ExpiresDefault 不起作用,而 "Header"起作用。怎么会?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8822559/
在 Apache 配置文件或 .htaccess 文件中,ExpiresDefault "access" 和 ExpiresDefault "access plus zero seconds" 之间有
我已经更新了我的 .htaccess 文件以包含以下内容: ExpiresDefault "access plus 1 month" 我试图告诉客户端所有 css 和 js 都不会在 1 个月内发
我正在设置 apache header 并且不想缓存 PHP、CGI、Python 或任何动态文件。 我使用的服务器:Debian 9 我添加了这个配置: # No caching for dynam
如果我这样做: ExpiresActive On ExpiresDefault "access plus 30 days" 它没有正确设置 Expire header
我是一名优秀的程序员,十分优秀!