在尝试优化一个网站并分析Google的网页速度分析时,有Leverage browser caching
虽然我已经使用以下行设置了mod_expires标头:
<IfModule mod_expires.c>
# Enable expirations
ExpiresActive On
# Default directive
ExpiresDefault "access plus 1 month"
# My favicon
ExpiresByType image/x-icon "access plus 1 year"
# Images
ExpiresByType image/gif "access plus 1 month"
ExpiresByType image/png "access plus 1 month"
ExpiresByType image/jpg "access plus 1 month"
ExpiresByType image/jpeg "access plus 1 month"
# CSS
ExpiresByType text/css "access 1 month"
# Javascript
ExpiresByType application/javascript "access plus 1 month"
<FilesMatch "^(ad_status.js|wp-emoji-release.min.js)$">
ExpiresActive on
ExpiresDefault "access plus 1 month"
</FilesMatch>
</IfModule>
在上面这些行中,我已经将ad_status.js包含在1个月的缓存中。
但在我得到的建议中:
Leverage browser caching for the following cacheable resources:
https://static.doubleclick.net/instream/ad_status.js (15 minutes)
我无法找到任何可以覆盖这15分钟缓存的解决方案。