【问题标题】:Yslow, Add Expires headers doesn't workYslow,添加过期标题不起作用
【发布时间】:2013-09-15 11:41:38
【问题描述】:

所以,我有 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

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

谢谢!

【问题讨论】:

    标签: apache .htaccess seo yslow


    【解决方案1】:

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

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

    在 httpd.conf 的项目配置中的文档模块中添加 ExpiresActive OnExpiresByType 对我有用。 也许这对你也有帮助。

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

    【讨论】:

      猜你喜欢
      • 2019-05-08
      • 2014-03-29
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2012-05-23
      • 2017-04-23
      • 1970-01-01
      相关资源
      最近更新 更多