'PageSpeed' firebug extension analysis , asks to Specify an expiration
at least one week in the future for some of the resources.And the
reponse headers of those resources do not contain "Cache Control" and
contain "Etag". But I have tried applying cache control to all the
resources using
<FilesMatch "\.(jpg|jpeg|png)$">
Header unset Etag
Header set Cache-control "max-age 1048500"
</FilesMatch>
But the above setting works only for some of the resources (which are
optimized infact) but not for the others.Waiting for your reply. Thank
You.
On Feb 28, 7:14 pm, Shawn Ligocki <
sligo...@google.com> wrote:
> Fromhttp://
code.google.com/p/modpagespeed/wiki/FAQ
>
> I installed mod_pagespeed; why isn't it rewriting any of my pages?
>
> 1. Check the HTTP response headers from your page (e.g., run curl -D -
> 2. It's possible that none of the active mod_pagepspeed rewriters found
> anything useful to rewrite in your page. Try enabling more aggressive ones!
> 3. mod_pagespeed cannot optimize resources (css, js, or images) that are
> marked as cache-control:nocache or cache-control:private. If your default
> caching headers are marked as such, mod-pagespeed will not rewrite the
> resources.
> 4. mod_pagespeed cannotminifyCSS files that it cannot parse,
> specifically it will fail on certain proprietary and CSS3 syntaxes
> (See issue
> 108 <
http://code.google.com/p/modpagespeed/issues/detail?id=108>).
> 5. We intentionally don't allow fetching and rewriting HTTPS resources
> (so we don't open up security holes in your server).
>
> Looks like #1 is working. If you send us a link to your pages (if it is
> net-accessible) we could tell you more.
> <
http://code.google.com/p/modpagespeed/wiki/FAQ>
> -Shawn