Nekompletné načítanie stránky
Dobrý deň,
mám web postavený na wordpress a používam čiastočne proxy cache. Niekedy sa stane že ak stránku navštívim po nejakom čase, tak sa cachovaný obsah nenačíta kompetne. Ak však stačím refresh F5 – tak stránka sa už vtedy kompletne načíta. Kde môže byť prosím problém?
Takto mám nastavené cachovanie v pravidlách htaccess:
# BEGIN Compress text files
<ifModule mod_deflate.c>
AddOutputFilterByType DEFLATE \
text/xml \
text/css \
text/plain \
image/svg+xml \
application/xhtml+xml \
application/xml \
application/rdf+xml \
application/rss+xml \
application/atom+xml \
text/javascript \
text/ecmascript \
application/javascript \
application/x-javascript \
application/ecmascript \
application/json \
application/x-font-ttf \
application/x-font-otf \
font/truetype \
font/opentype \
application/x-pointplus
</ifModule>
# END Compress text files
# BEGIN Expire headers
<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/jpg „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 604800 seconds“
ExpiresByType application/javascript „access plus 604800 seconds“
ExpiresByType application/x-javascript „access plus 604800 seconds“
</ifModule>
# END Expire headers
# BEGIN Cache-Control Headers
<ifModule mod_headers.c>
<filesMatch „\.(ico|jpe?g|png|gif|swf)$“>
Header set Cache-Control „public“
</filesMatch>
<filesMatch „\.(css)$“>
Header set Cache-Control „public“
</filesMatch>
<filesMatch „\.(js)$“>
Header set Cache-Control „private“
</filesMatch>
<filesMatch „\.(x?html?|php)$“>
Header set Cache-Control „no-store, max-age=0“
</filesMatch>
</ifModule>
# END Cache-Control Headers
1 Odpověď
Dobrý den,
pokud se Vám web po obnovení stránky v prohlížeči načte správně, je problém s cache pamětí v prohlížeči. Zkuste si cache promazávat, spustit anonymní režim nebo použít jiný prohlížeč.