Background problem
-
Ich habe einen Zufallshintergrund auf der Startseite und im Blog. Dieser wird in Edge auch angezeigt. In Chrome bleibt er statisch, auch nach dem Leeren des Chaches. Opera reagiert wie Chrome. In Firefox ?ndert sich das Bild nur bei Refresh.
Das ist meine Site.
Als .htacess verwende ich:
# BEGINN CACHIFY # ENGINE ON RewriteEngine On # GZIP FILE RewriteCond %{REQUEST_URI} /$ RewriteCond %{REQUEST_URI} !^/wp-admin/.* RewriteCond %{REQUEST_METHOD} !=POST RewriteCond %{QUERY_STRING} ="" RewriteCond %{HTTP_COOKIE} !(wp-postpass|wordpress_logged_in|comment_author)_ RewriteCond %{HTTP:Accept-Encoding} gzip RewriteCond %{DOCUMENT_ROOT}/wp-content/cache/cachify/%{HTTP_HOST}%{REQUEST_URI}index.html.gz -f RewriteRule ^(.*) /wp-content/cache/cachify/%{HTTP_HOST}%{REQUEST_URI}index.html.gz [L] AddType text/html .gz AddEncoding gzip .gz # HTML FILE RewriteCond %{REQUEST_URI} /$ RewriteCond %{REQUEST_URI} !^/wp-admin/.* RewriteCond %{REQUEST_METHOD} !=POST RewriteCond %{QUERY_STRING} ="" RewriteCond %{HTTP_COOKIE} !(wp-postpass|wordpress_logged_in|comment_author)_ RewriteCond %{DOCUMENT_ROOT}/wp-content/cache/cachify/%{HTTP_HOST}%{REQUEST_URI}index.html -f RewriteRule ^(.*) /wp-content/cache/cachify/%{HTTP_HOST}%{REQUEST_URI}index.html [L] # END CACHIFY # BEGINN WordPress RewriteEngine On RewriteRule ^sitemap\.xml$ /sitemap.xml.php [L] RewriteRule ^robots\.txt$ /robots.txt.php [L] # BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPress
Der cache ist mit 650 KB gefüllt, aber die Datei /wp-content/cache ist leer.
Welchen Fehler mache ich???
Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
- The topic ‘Background problem’ is closed to new replies.