apache - recursos - ¿Cómo configuro la caducidad en CSS, JS e Imágenes?
especificar caché de navegador html (4)
Este es el que uso para arreglar exactamente lo mismo cuando ejecuté el complemento PageSpeed:
<FilesMatch "/.(jpg|jpeg|png|gif|swf)$">
Header set Cache-Control "max-age=604800, public"
</FilesMatch>
Esto entra en su archivo .htaccess.
Lea en esta página para obtener más información sobre cómo configurar la memoria caché para tipos de archivos adicionales y / o cambiar la longitud de la memoria caché:
http://www.askapache.com/htaccess/apache-speed-cache-control.html
Recientemente analicé mi sitio web con el complemento de velocidad de página en Firebug. Me sugirió establecer la caducidad en CSS, JS y archivos de imagen.
Me pregunto cómo puedo hacer esto?
Lo que hago es crear un archivo "expires.conf" e incluirlo en la configuración del archivo de sitio de Apache. Puede incluir en .htaccess si lo desea. Mi expira:
<IfModule mod_expires.c>
ExpiresActive On
ExpiresByType image/jpg "access 1 year"
ExpiresByType image/jpeg "access 1 year"
ExpiresByType image/gif "access 1 year"
ExpiresByType image/png "access 1 year"
ExpiresByType text/css "access 1 month"
ExpiresByType text/html "access 1 month"
ExpiresByType application/pdf "access 1 month"
ExpiresByType text/x-javascript "access 1 month"
ExpiresByType application/x-shockwave-flash "access 1 month"
ExpiresByType image/x-icon "access 1 year"
ExpiresDefault "access 1 month"
</IfModule>
Necesita activar el módulo expira en apache.
Me gustaría agregar esta solución para aquellos que la buscan ....
también funciona muy bien ... usando .htaccess
https://webmasters.stackexchange.com/a/5275/37765
<FilesMatch "(?i)^.*/.(ico|flv|jpg|jpeg|png|gif|js|css)$">
ExpiresActive On
ExpiresDefault A2592000
</FilesMatch>
Mejor uno (que se encuentra en http://www.paulund.co.uk/set-expire-headers-in-htaccess , pero como 0 seconds
funcionó, lo cambié a 1 seconds
)
# These are pretty far-future expires headers
# They assume you control versioning with cachebusting query params like: <script src="application.js?20100608">
# Additionally, consider that outdated proxies may miscache
#
# www.stevesouders.com/blog/2008/08/23/revving-filenames-dont-use-querystring/
# If you don`t use filenames to version, lower the css and js to something like "access plus 1 week"
<IfModule mod_expires.c>
ExpiresActive on
# Perhaps better to whitelist expires rules? Perhaps.
ExpiresDefault "access plus 1 month"
# cache.appcache needs re-requests in FF 3.6 (thx Remy ~Introducing HTML5)
ExpiresByType text/cache-manifest "access plus 1 seconds"
# Your document html
ExpiresByType text/html "access plus 1 seconds"
# Data
ExpiresByType text/xml "access plus 1 seconds"
ExpiresByType application/xml "access plus 1 seconds"
ExpiresByType application/json "access plus 1 seconds"
# RSS feed
ExpiresByType application/rss+xml "access plus 1 hour"
# Favicon (cannot be renamed)
ExpiresByType image/x-icon "access plus 1 week"
# Media: images, video, audio
ExpiresByType image/gif "access plus 1 month"
ExpiresByType image/png "access plus 1 month"
ExpiresByType image/jpg "access plus 1 month"
ExpiresByType image/jpeg "access plus 1 month"
ExpiresByType video/ogg "access plus 1 month"
ExpiresByType audio/ogg "access plus 1 month"
ExpiresByType video/mp4 "access plus 1 month"
ExpiresByType video/webm "access plus 1 month"
# HTC files (css3pie)
ExpiresByType text/x-component "access plus 1 month"
# Webfonts
ExpiresByType font/truetype "access plus 1 month"
ExpiresByType font/opentype "access plus 1 month"
ExpiresByType application/x-font-woff "access plus 1 month"
ExpiresByType image/svg+xml "access plus 1 month"
ExpiresByType application/vnd.ms-fontobject "access plus 1 month"
# CSS and JavaScript
ExpiresByType text/css "access plus 1 seconds"
ExpiresByType application/javascript "access plus 1 month"
ExpiresByType text/javascript "access plus 1 month"
<IfModule mod_headers.c>
Header append Cache-Control "public"
</IfModule>
</IfModule>