对于WordPress网站优化,您应该看看:https://codex.wordpress.org/WordPress_Optimization
我看了你的pagespeed报告,主要是你正在使用的图像。有许多插件可以为您优化它们。我特别喜欢这个:https://wordpress.org/plugins/imsanity/
根据服务器缓存,您可以尝试流行的缓存插件,也可以让系统管理员在服务器级别为您优化这些选项。
就我而言。使用Apache 2.4,我在pre\\u virtualhost\\u global中有此配置。形态:
# Cache Control Settings for one hour cache
<FilesMatch ".(ico|pdf|flv|jpg|jpeg|png|gif|js|css|swf)$">
Header set Cache-Control "max-age=3600, public"
</FilesMatch>
<FilesMatch ".(xml|txt)$">
Header set Cache-Control "max-age=3600, public, must-revalidate"
</FilesMatch>
<FilesMatch ".(html|htm)$">
Header set Cache-Control "max-age=3600, must-revalidate"
</FilesMatch>
# Mod Deflate performs data compression
<IfModule mod_deflate.c>
<FilesMatch ".(js|css|html|php|xml|jpg|png|gif)$">
SetOutputFilter DEFLATE
BrowserMatch ^Mozilla/4 gzip-only-text/html
BrowserMatch ^Mozilla/4.0[678] no-gzip
BrowserMatch bMSIE no-gzip
</FilesMatch>
</IfModule>
Pagespeed还提供了关于其他因素的说明。你应该跟着他们。