WP Rocket installieren lassen

Segelflugpilot

Enthusiast
Thread Starter
Mitglied seit
18.10.2012
Beiträge
1.057
Moin moin,
wir (ein Kreisverband und 8 Ortsräte der Grünen) haben eine gemeinsame Wordpress Multisite. Um die Geschwindigkeit zu verbessern würden wir gerne ein Cache Plugin nutzen und nach einiger Recherche würde ich sagen, dass WP Rocket wirklich gut zu sein scheint. Daher würden wir das gerne installieren lassen (da Entwickler ja unendlich oft ihren Lizenz Code benutzen können). Kennt ihr vielleicht jemanden der das für uns machen würde oder was es kostet? Laut WP Rocket selbst ist das ja erlaubt und würde uns Geld sparen und jemand anderem Geld bringen:)
Danke!
 
Zuletzt bearbeitet:
Wenn Du diese Anzeige nicht sehen willst, registriere Dich und/oder logge Dich ein.
Habt ihr mal "Autoptimize" ausprobiert? Das nutze ich in Verbindung mit ein paar Kniffen in der htaccess (wenn ihr Apache nutzt) und fahre damit ganz gut. Dazu habe ich noch AMP in Benutzung, was bis vor kurzem auch noch das Ergebnis bei Google ganz gut gepushed hat.
Und das beste Cache-Plugin nützt natürlich nichts, wenn der Server am Limit ist. Ich gehe davon aus, dass das schon geprüft wurde.
 
Wir haben extra den Hoster gewechselt und sind jetzt bei all inkl und die First Response Time hat sich sehr merklich reduziert, wir sind insgesamt sehr zufrieden (es hätte aber bestimmt noch etwas besseres gegeben) AMP habe ich versucht zu vermeiden. Autoptimize habe ich anfangs einmal ausprobiert, das hat aber nicht so viel gebracht. Vielleicht muss ich mich da nur mehr reinlesen. Hast du vielleicht Seitenhinweise zu deinen Kniffen für die htaccess Datei?
 
Wenn es ein shared Hoster wie all inkl ist, dann nützt das pimpen der htaccess Datei vielleicht nicht viel, weil die Module fehlen. Ich betreibe meinen eigenen Server (für wenig Geld bei netcup), da kann ich schalten und walten wie ich will.

Wenn mod_deflate & mod_expire aktiv ist, dann kannst du in der htaccess folgendes hinterlegen (wenn der apache aktiv ist):
Code:
<IfModule mod_deflate.c>
    AddOutputFilterByType DEFLATE text/html text/plain text/css application/json
    AddOutputFilterByType DEFLATE application/javascript
    AddOutputFilterByType DEFLATE text/xml application/xml text/x-component
    AddOutputFilterByType DEFLATE application/xhtml+xml application/rss+xml application/atom+xml
    AddOutputFilterByType DEFLATE image/x-icon image/svg+xml application/vnd.ms-fontobject application/x-font-ttf font/opentype
</IfModule>

# Set cache-control
<IfModule mod_expires.c>
    ExpiresActive On
    ExpiresDefault "access plus 2 days"
    ExpiresByType text/html "access plus 6 hours"
    ExpiresByType image/gif "access plus 3 months"
    ExpiresByType image/jpeg "access plus 3 months"
    ExpiresByType image/jpg "access plus 3 months"
    ExpiresByType image/png "access plus 3 months"
    ExpiresByType image/svg+xml "access plus 3 months"
    ExpiresByType image/x-png "access plus 3 months"
    ExpiresByType text/css "access plus 8 days"
    ExpiresByType text/javascript "access plus 7 days"
    ExpiresByType application/x-javascript "access plus 7 days"
    ExpiresByType application/javascript "access plus 7 days"
    ExpiresByType image/x-icon "access plus 3 months"
</IfModule>
 
Cache ist bei uns schon an.
Code:
# Cache
<IfModule mod_mime.c>
  AddType image/png                           png
  AddType image/jpg                           jpg
  AddType image/jpeg                           jpeg
  AddType image/webp                          webp
  AddType application/x-font-woff             woff
  AddType application/x-font-woff2            woff2
</IfModule>
<IfModule mod_expires.c>
# Enable expirations
ExpiresActive On
# Default directive
ExpiresDefault "access plus 1 months"
# HTML
  ExpiresByType text/html  "access plus 10 minutes"
# My favicon
ExpiresByType image/x-icon "access plus 1 years"
# Images
ExpiresByType image/png "access plus 1 years"
ExpiresByType image/jpg "access plus 1 years"
ExpiresByType image/jpeg "access plus 1 years"
ExpiresByType image/svg+xml "access plus 1 years"
ExpiresByType image/webp "access plus 1 years"
# CSS
ExpiresByType text/css "access plus 6 months"
# Javascript
ExpiresByType application/javascript "access plus 6 months"
# Font
  ExpiresByType application/x-font-woff  "access plus 1 years"
  ExpiresByType application/x-font-woff2 "access plus 1 years"
</IfModule>
 
Hardwareluxx setzt keine externen Werbe- und Tracking-Cookies ein. Auf unserer Webseite finden Sie nur noch Cookies nach berechtigtem Interesse (Art. 6 Abs. 1 Satz 1 lit. f DSGVO) oder eigene funktionelle Cookies. Durch die Nutzung unserer Webseite erklären Sie sich damit einverstanden, dass wir diese Cookies setzen. Mehr Informationen und Möglichkeiten zur Einstellung unserer Cookies finden Sie in unserer Datenschutzerklärung.


Zurück
Oben Unten refresh