Anstelle dieses sehr allgemein gehaltenen Codes
würde ich eher etwas genauer definieren, z. B. so:
Code
<IfModule mod_expires.c>
# Modul aktivieren
ExpiresActive on
# Fav/Icons sind 1 Monat gueltig
ExpiresByType image/ico A2419200
ExpiresByType image/x-icon A2419200
# uebliche Dateien sind 2 Wochen gueltig
ExpiresByType application/pdf A1209600
ExpiresByType application/zip A1209600
ExpiresByType text/javascript A1209600
ExpiresByType text/js A1209600
ExpiresByType application/javascript A1209600
ExpiresByType application/x-javascript A1209600
ExpiresByType application/x-shockwave-flash A1209600
# CSS und Grafiken sind 7 Tage gueltig
ExpiresByType text/css A604800
ExpiresByType image/jpg A604800
ExpiresByType image/gif A604800
ExpiresByType image/jpeg A604800
ExpiresByType image/png A604800
# alle anderen Dateien sind 4 Stunden gueltig
ExpiresDefault A0
</IfModule>
Alles anzeigen
Schau dazu auch mal hier: http://www.askapache.com/htaccess/speed…Time_Cheatsheet