Jump to content
  • 0

Shop beschleunigen per htaccess


Shad86

Question

Guten Morgen Forum,

 

Google hat uns den Tip gegeben den Shop per <IfModule mod_expires.c> zu beschleunigen.

Soll schneller gecrawlt werden können weil nicht immer wieder der selbe Inhalt gecheckt wird.

Ich hätte gern eure Erfahrung dazu...

 

 

Und hier ist mein kompletter Code dazu:

<IfModule mod_expires.c>
# Enable expirations
ExpiresActive On 
# Default directive
ExpiresDefault "access plus 1 month"
# My favicon
ExpiresByType image/x-icon "access plus 1 year"
# Images
ExpiresByType image/gif "access plus 1 week"
ExpiresByType image/png "access plus 1 week"
ExpiresByType image/jpg "access plus 1 week"
ExpiresByType image/jpeg "access plus 1 week"
# CSS
ExpiresByType text/css "access plus 1 week"
# Javascript
ExpiresByType application/javascript "access plus 1 month"
</IfModule>

Nun habe ich nur ein Problem damit.

Kopiere ich einen Artikel um daraus einen ähnlichen zu machen, ändere ich sämtliche Texte und Preise usw. und speichere den Artikel. Gehe ich im Backend zurück auf den Artikel ist wieder der ursprüngliche Text drin. Im Frontend passt alles. Aktualisiere ich das Backend einmal stimmt da auch wieder alles. Ich denke das hat mit dem oben angegebenen Code zu tun. Entferne ich diesen ist alles wie gewohnt. Hat eine eine Idee oder Erfahrung welcher Teil genau suboptimal daran zu sein scheint?

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

Hi,

 

liegt vermutlich an deinem ExpiresDefault, lieber etwas granualer handhaben - willst ja deinen content immer aktuell halten.

 

Hier z.B meine

<IfModule mod_expires.c>
	ExpiresActive On
	ExpiresByType image/gif "access plus 1 month"
	ExpiresByType image/jpeg "access plus 1 month"
	ExpiresByType image/png "access plus 1 month"
	ExpiresByType text/css "access plus 1 week"
	ExpiresByType text/javascript "access plus 1 week"
	ExpiresByType application/javascript "access plus 1 week"
	ExpiresByType application/x-javascript "access plus 1 week"
	ExpiresByType image/x-icon "access plus 1 year"
	ExpiresByType image/svg+xml "access plus 1 year"
	ExpiresByType image/vnd.microsoft.icon "access plus 1 year"
	ExpiresByType application/font-woff "access plus 1 year"
	ExpiresByType application/x-font-woff "access plus 1 year"
	ExpiresByType application/vnd.ms-fontobject "access plus 1 year"
	ExpiresByType font/opentype "access plus 1 year"
	ExpiresByType font/ttf "access plus 1 year"
	ExpiresByType font/otf "access plus 1 year"
	ExpiresByType application/x-font-ttf "access plus 1 year"
	ExpiresByType application/x-font-otf "access plus 1 year"
</IfModule>

Gruß Tom

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...