3

So, i have Yslow and i'm trying to ADD Expires headers.

So i have a .htaccess on the root of my website :

<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>

I have enable mod_headers and mod_expires :

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

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

But no effect, i have ALWAYS "F" with Yslow... What can i do for that ? I have already read the others topics of stackoverflow....

Thanks !

4

1 回答 1

0

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

http://www.simonwhatley.co.uk/how-to-set-an-expires-header-in-apache。在 httpd.conf 的项目配置中的文档模块中

添加ExpiresActive On before 和ExpiresByType对我有用。也许这对你也有帮助。

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

于 2014-01-07T04:30:15.150 回答