Yslow,添加Expires标头不起作用

时间:2013-09-11 12:32:43

标签: apache .htaccess seo yslow

所以,我有Yslow,我正在尝试添加Expires标题。

所以我的网站根目录有.htaccess

<ifModule mod_expires.c>
  ExpiresActive On
  ExpiresDefault "access plus 1 seconds"
  ExpiresByType text/html "access plus 1 seconds"
  ExpiresByType image/gif "access plus 2592000 seconds"
  ExpiresByType image/jpeg "access plus 2592000 seconds"
  ExpiresByType image/png "access plus 2592000 seconds"
  ExpiresByType text/css "access plus 604800 seconds"
  ExpiresByType text/javascript "access plus 216000 seconds"
  ExpiresByType application/x-javascript "access plus 216000 seconds"
  ExpiresByType application/javascript "access plus 216000 seconds"  
</ifModule>

<ifModule mod_headers.c>
  <filesMatch "\\.(ico|pdf|flv|jpg|jpeg|png|gif|swf)$">
    Header set Cache-Control "max-age=2592000, public"
  </filesMatch>
  <filesMatch "\\.(css)$">
    Header set Cache-Control "max-age=604800, public"
  </filesMatch>
  <filesMatch "\\.(js)$">
    Header set Cache-Control "max-age=216000, private"
  </filesMatch>
  <filesMatch "\\.(xml|txt)$">
    Header set Cache-Control "max-age=216000, public, must-revalidate"
  </filesMatch>
  <filesMatch "\\.(html|htm|php)$">
    Header set Cache-Control "max-age=1, private, must-revalidate"
  </filesMatch>
</ifModule>

我启用了mod_headers和mod_expires:

root@heisenberg:~# a2enmod headers
Module headers already enabled

root@heisenberg:~# a2enmod expires
Module expires already enabled

但没有效果,我和Yslow总是“F”......我能为此做些什么?我已经阅读了stackoverflow的其他主题....

谢谢!

1 个答案:

答案 0 :(得分:0)

当遇到类似问题时,以下链接帮助我在Apache上设置了expires标头。

http://www.simonwhatley.co.uk/how-to-set-an-expires-header-in-apache

在httpd.conf中项目配置中的文档模块中添加 ExpiresActive On 之前和 ExpiresByType 对我来说是个窍门。 也许这对你有帮助。

此外,我不需要将Cache-Control添加到标头。它们会自动添加到标题中。我不是专业人士,但这是我所观察到的。

相关问题