Tags: htaccess
- Dit onderwerp is leeg.
-
AuteurBerichten
-
-
16 januari 2016 om 12:44 am #24499
Ik ben bezig mijn website te versnellen.
Dit wil ik doen door een combinatie van het comprimeren van bestanden en een verloopdatum aan bestanden te geven.Ik vond hier het volgende script voor, maar als ik mijn website check op de google pagespeed, blijkt dat het nog niet werkt.
Wat doe ik verkeerd?
# BEGIN Compress text files
<filesMatch “.(css|js|x?html?|php)$”>
SetOutputFilter DEFLATE# END Compress text files
# BEGIN Expire headers
ExpiresActive On
ExpiresDefault “access plus 1 seconds”
ExpiresByType image/x-icon “access plus 2592000 seconds”
ExpiresByType image/jpeg “access plus 2592000 seconds”
ExpiresByType image/png “access plus 2592000 seconds”
ExpiresByType image/gif “access plus 2592000 seconds”
ExpiresByType application/x-shockwave-flash “access plus 2592000 seconds”
ExpiresByType text/css “access plus 604800 seconds”
ExpiresByType text/javascript “access plus 216000 seconds”
ExpiresByType application/javascript “access plus 216000 seconds”
ExpiresByType application/x-javascript “access plus 216000 seconds”
ExpiresByType text/html “access plus 600 seconds”
ExpiresByType application/xhtml+xml “access plus 600 seconds”# END Expire headers
# BEGIN Cache-Control Headers
<filesMatch “.(ico|jpe?g|png|gif|swf)$”>
Header set Cache-Control “max-age=2592000, public”<filesMatch “.(css)$”>
Header set Cache-Control “max-age=604800, public”<filesMatch “.(js)$”>
Header set Cache-Control “max-age=216000, private”<filesMatch “.(x?html?|php)$”>
Header set Cache-Control “max-age=600, private, must-revalidate”# END Cache-Control Headers
# BEGIN Turn ETags Off
Header unset ETag
FileETag None
# END Turn ETags Off# BEGIN Remove Last-Modified Header
Header unset Last-Modified
# END Remove Last-Modified Header
-
-
AuteurBerichten
Je moet ingelogd zijn om een antwoord op dit onderwerp te kunnen geven.