• I use bwp minify plugin to bundle and minify my js and css files.

    I keep getting this warning in YSlow or in Google Page Speed test:

    There are 6 static components without a far-future expiration date.

    They are all scripts or css minified by the plugin.For instance:

    /plugins/bwp-minify/cache/minify-b1-cptch_stylesheet-ec534e4aecfb8e218ab44cb07de99848.css?ver=2

    In my Apache host file, I have set the following:

    Header unset Pragma
    FileETag None
    Header unset ETag

    <FilesMatch “\.(ico|jpg|jpeg|png|gif|js|css|swf|pdf|flv|mp3)$”>
    <IfModule mod_expires.c>
    ExpiresActive on
    ExpiresDefault “access plus 14 days”
    Header set Cache-Control “public”
    </IfModule>
    </FilesMatch>
    <FilesMatch “\.(html|htm|xml|txt|xsl)$”>
    Header set Cache-Control “max-age=7200, must-revalidate”
    </FilesMatch>

    What am I missing ?

  • The topic ‘[plugin: bwp minify]’ is closed to new replies.