Chance
Member
Ich versuche gerade, das Cachen vom Favicon zu aktivieren.
Bei anderen Grafiken gelingt mir das schon:
Aber aus irgendeinem Grund greift es nicht beim Favicon.
Dort kann ich überhaupt kein Expire setzen.
Bei anderen Grafiken gelingt mir das schon:
Code:
<IfModule mod_expires.c>
# turn on the module for this directory
ExpiresActive on
# set default
ExpiresDefault "access plus 24 hours"
# cache common graphics
ExpiresByType image/jpg "access plus 1 months"
ExpiresByType image/gif "access plus 1 months"
ExpiresByType image/jpeg "access plus 1 months"
ExpiresByType image/png "access plus 1 months"
ExpiresByType image/ico "access plus 5184000 seconds"
ExpiresByType image/x-icon "access plus 2592000 seconds"
</IfModule>
Aber aus irgendeinem Grund greift es nicht beim Favicon.
Dort kann ich überhaupt kein Expire setzen.