Hi all,
http://onlinedienstleister24.de/ has 2 designs.
After I changed the design all settings were saved successfully, yet I still get the old style... so I have deleted the old one.
If you click on a link in the menu:
- Dienstleistungen
- Wir über uns
- Impressum & Kontakt
you get the new design and all is ok, but on the first visit you always get the old sytle...
Why????
Update:
If I use http://www.onlinedienstleister24.de/ the site will load correctly.
I don't think the problem is with the browser cache.
Update 2.0
my htaccess
# Das Filtermodul aktivieren.
SetOutputFilter DEFLATE
# Einige Browser verstehen kein gzip:
BrowserMatch ^Mozilla/4 gzip-only-text/html
BrowserMatch ^Mozilla/4\.0[678] no-gzip
# Andere schon...
BrowserMatch \bMSIE !no-gzip !gzip-only-text/html
# Bilddateien nicht komprimieren
SetEnvIfNoCase Request_URI \.(?:gif|jpe?g|png)$ no-gzip dont-vary
# "Vary: Accept-Encoding"-Header einfuegen (wichtig bei Proxys)
# (ben�tigt das headers-Modul)
Header append Vary User-Agent env=!dont-vary
<IfModule mod_expires.c>
#ExpiresActive On
#ExpiresByType image/x-icon "access plus 5184000 seconds"
#ExpiresByType image/gif "access plus 5184000 seconds"
#ExpiresByType image/jpg "access plus 5184000 seconds"
#ExpiresByType image/png "access plus 5184000 seconds"
#ExpiresByType text/css "access plus 5184000 seconds"
#ExpiresByType text/javascript "access plus 5184000 seconds"
#ExpiresByType application/javascript "access plus 5184000 seconds"
#ExpiresByType application/x-javascript "access plus 5184000 seconds"
</IfModule>
# 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