Dies sind 3 Schnipsel für eine bessere Leistung in Bezug auf Yahoo! Regeln:
Etags deaktivieren:
Header unset ETag
FileETag None
Verfallsköpfe hinzufügen:
<FilesMatch "\.(ico|jpg|jpeg|png|gif|js|css|swf)$">
Header set Expires "Tue, 16 Jun 2020 20:00:00 GMT"
</FilesMatch>
Oder
ExpiresActive On
ExpiresByType text/html "access plus 1 day"
ExpiresByType image/gif "access plus 10 years"
ExpiresByType image/jpeg "access plus 10 years"
ExpiresByType image/png "access plus 10 years"
ExpiresByType text/css "access plus 10 years"
ExpiresByType text/javascript "access plus 10 years"
ExpiresByType application/x-javascript "access plus 10 years"
Klartextdatei komprimieren:
<FilesMatch "\.(js|css|html|htm|php|xml)$">
SetOutputFilter DEFLATE
</FilesMatch>
Lesen Sie hier mehr darüber .
Aktualisiert:
Anfragen an die www-Domain umleiten
RewriteCond %{HTTP_HOST} !^www\.domain\.tld [NC]
RewriteRule ^(.*)$ http://www.domain.tld/$1 [R=301,L]
Blockiere die Anfrage an xmlrpc.php
Verwenden Sie diese Option nur, wenn Sie keine Remoteveröffentlichung verwenden, da dies verhindern kann, dass Ihr Blog gehackt wird.
RewriteRule ^(.*)xmlrpc\.php$ http://www.domain.tld [R=301,L]
Leiten Sie alle Feeds zum Feedburner um
RewriteCond %{HTTP_USER_AGENT} !^.*(FeedBurner|FeedValidator) [NC]
RewriteRule ^feed/?.*$ http://feeds.feedburner.com/feed_uri [R=301,NC,L]