Elendes Problem Browser-Caching
Hallo,
ich habe auch mal wieder eine Frage. In meiner htaccess steht atm folgendes:
<IfModule expires_module>
ExpiresActive on
ExpiresDefault "access plus 1 month"
</IfModule>
<IfModule mod_deflate.c>
AddOutputFilterByType DEFLATE text/html text/css application/x-javascript
</IfModule>
Damit konnte ich bislang ganz gut bei Google Insights Browser Caching und Kompression abdecken. Könnte natürlich sein, dass auf dem Webserver auf dem ich sonst war bereits alles vorteilhaft eingestellt war. Atm bekomme ich jedenfalls diese Meldung:
goo.gl/23kX23
Daraufhin habe ich versucht mit folgenden Codebausteinen etwas am Ergebnis zu verändern, aber es ist immer das Selbe:
<IfModule mod_expires.c>
ExpiresActive On
ExpiresByType image/gif "access plus 7 days"
ExpiresByType image/ico "access plus 7 days"
ExpiresByType image/jpeg "access plus 7 days"
ExpiresByType image/jpg "access plus 7 days"
ExpiresByType image/png "access plus 7 days"
ExpiresByType text/css "access plus 7 days"
ExpiresByType text/javascript "access plus 7 days"
ExpiresByType application/x-javascript "access plus 7 days"
ExpiresByType application/javascript "access plus 7 days"
</IfModule>
<IfModule mod_headers.c>
<FilesMatch "\\.(ico|jpeg|jpg|png|gif|swf)$">
Header set Cache-Control "max-age=4592000, public"
</FilesMatch>
<FilesMatch "\\.(css)$">
Header set Cache-Control "max-age=2592000, public"
</FilesMatch>
<FilesMatch "\\.(js)$">
Header set Cache-Control "max-age=216000, private"
</FilesMatch>
</IfModule>
Gibt es eine Möglichkeit die Konfiguration des Servers auszulesen? PHP ist auf meinem Space nicht möglich. Evtl. ein Dienst von Dritten? Oder hat wer einen Plan, was ich noch testen könnte?
PS: Irgendwie wollen die Code-Tag Buttons nicht.
Beitrag erstellen
EinloggenKostenlos registrieren