Bien.
Cree un .htaccess en raiz del directorio donde tengo el sitio (estoy en localhost) y la agregue esto:
Código:
# 1 AÑO
<FilesMatch "\.(ico|pdf|flv)$">
Header set Cache-Control "max-age=29030400, public"
</FilesMatch>
# 1 SEMANA * 2
<FilesMatch "\.(jpg|jpeg|png|gif|swf)$">
Header set Cache-Control "max-age=604800, public"
</FilesMatch>
# 2 DIAS
<FilesMatch "\.(xml|txt|css|js)$">
Header set Cache-Control "max-age=172800, proxy-revalidate"
</FilesMatch>
# 1 MINUTO
<FilesMatch "\.(html|htm|php)$">
Header set Cache-Control "max-age=60, private, proxy-revalidate"
</FilesMatch>
Solo multiplique el tiempo de cache de imagenes al doble.
La info la saque de: http://www.tufuncion.com/cache-web
¿Lo hice bien? ¿Cómo lo compruebo? ¿Se aplica a todos los html del sitio?