Guten Morgen
Ich hänge seit ein paar tagen an meiner Seite fest in dem Bereich Optimierung.
Ich benutze die Aktuelle Wordpress Version mit WooCommerce.
Ich habe mal ein paar Screens gemacht und hoffe ihr könnt mir helfen diese Fehler zu beheben.
Hier noch mein .htaccess
Ich hänge seit ein paar tagen an meiner Seite fest in dem Bereich Optimierung.
Ich benutze die Aktuelle Wordpress Version mit WooCommerce.
Ich habe mal ein paar Screens gemacht und hoffe ihr könnt mir helfen diese Fehler zu beheben.
Hier noch mein .htaccess
Code:
# 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
#<Files "martin-familie.com">
#Deny from all
#</Files>
# HTTPS erzwingen
RewriteEngine On
RewriteCond %{SERVER_PORT} !^443$
RewriteRule (.*) https://%{HTTP_HOST}/$1 [R=301,L]
# Wordfence WAF
<Files ".user.ini">
<IfModule mod_authz_core.c>
Require all denied
</IfModule>
<IfModule !mod_authz_core.c>
Order deny,allow
Deny from all
</IfModule>
</Files>
# END Wordfence WAF
#Verbietet allen den Zugang zur wp-config
<files wp-config.php>
order allow,deny
deny from all
</files>
#keep-alive
<IfModule mod_headers.c>
Header set Connection keep-alive
</IfModule>
#Verhindert das einfache Auslesen von Nutzernamen
RewriteEngine On
RewriteBase /
RewriteCond %{QUERY_STRING} .*author=(.+.?) [NC]
RewriteRule (.*) /blog/?author= [NC,L,R=301]
#Zugriffe auf .htaccess verhindern
<files ~ "^.*\.([Hh][Tt][Aa])">
order allow,deny
deny from all
satisfy all
</files>
## Begin - Compression / Cache
# turns cache on for 1 month
ExpiresActive On
ExpiresByType text/css "access plus 1 month"
ExpiresByType text/javascript "access plus 1 month"
ExpiresByType text/html "access plus 1 month"
ExpiresByType application/javascript "access plus 1 month"
ExpiresByType application/x-javascript "access plus 1 month"
ExpiresByType application/xhtml-xml "access plus 600 seconds"
ExpiresByType image/gif "access plus 1 month"
ExpiresByType image/jpeg "access plus 1 month"
ExpiresByType image/png "access plus 1 month"
ExpiresByType image/x-icon "access plus 1 month"
Header set Cache-Control "max-age=2592000, public"
Header set Cache-Control "max-age=604800, public"
Header set Cache-Control "max-age=216000, private"
Header set Cache-Control "max-age=600, private, must-revalidate"
## End - Compression / Cache