PDA

Archiv verlassen und diese Seite im Standarddesign anzeigen : Shop schneller Laden mit folgenden Änderungen.



rf-musik
17.01.2016, 20:09
Hallo,
das habe ich gefunden, wenn ihr die beiden Scripte in die .htaccess am Ende mit einfügt habt ihr eine schnellere Shop Ladezeit.

bei Ffunktioniert es einwandfrei :rolleyes:

Caching optimieren:


<IfModule mod_expires.c>
ExpiresActive On
ExpiresDefault "access plus 2592000 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/x-javascript "access plus 216000 seconds"
ExpiresByType text/html "access plus 600 seconds"
ExpiresByType application/xhtml+xml "access plus 600 seconds"
</IfModule>

Komprimierung aktivieren:


# BEGIN Compress text files
<IfModule mod_deflate.c>
AddOutputFilterByType DEFLATE text/css
</IfModule>
# BEGIN Gzip Compression
AddEncoding gzip .gz
<filesmatch "\.js\.gz$">
AddType "text/javascript" .gz
</filesmatch>
<filesmatch "\.css\.gz$">
AddType "text/css" .gz
</filesmatch>
<ifmodule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP:Accept-encoding} gzip
RewriteCond %{REQUEST_FILENAME} \.(js|css)$
RewriteCond %{REQUEST_FILENAME}.gz -f
RewriteRule ^(.*)$ $1.gz [QSA,L]
</ifmodule>
# END Gzip Compression

Gruß Ralf