我尝试了几种方法来获取图像和其他资源的到期日期,但根据http://www.webpagetest.org/似乎都没有
我还安装了 W3 插件,该工具仍然报告图像没有设置过期标题。
我还在我的 htaccess 中包含了以下代码:
<IfModule mod_expires.c>
ExpiresActive On
ExpiresDefault A300
ExpiresByType application/x-javascript A3600
ExpiresByType text/css A3600
ExpiresByType image/gif A3600
ExpiresByType image/png A3600
ExpiresByType image/jpeg A3600
ExpiresByType text/plain A300
ExpiresByType application/x-shockwave-flash A3600
ExpiresByType video/x-flv A3600
ExpiresByType application/pdf A3600
ExpiresByType text/html A300
</IfModule>
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
这似乎是一个常见问题,我已经看到了很多关于此的问题,但找不到答案。
问题出在测试工具上还是在我的服务器上?我怎样才能知道?