我们有我们的网站,这是建立在Wordpress的CMS。这个网站的速度非常低(根据gtmetrix的结果,大约是42% )。
网址:https://www.ttademo.timesandtrendsacademy.com/
因此,我做了一些速度优化相关的活动,以提高我们的网站速度。为此,我使用了两个相同的优化插件。
1) wp-fastest cache 2) wp-optimize
通过这些插件进行优化后,我们的网站仅提高了4%。根据gtmetrix工具的报告,我已经添加了以下代码来启用-Keep-Alive,但它对我们的网站没有影响。
# TN START ENABLE KEEP ALIVE
<ifModule mod_headers.c>
Header set Connection keep-alive
</ifModule>
# TN END ENABLE KEEP ALIVE你能让我知道我们需要实现什么来提高我们的网站速度。
谢谢,Gopal
发布于 2018-04-30 16:09:27
要改善您的网站,请关注points
1. install W3 total cache plugin and wp-smushit plugin and customized it.
2. Enable gzip compression
3. delete old post revisions
4. Identify un-used images, CSS and JS files and remove.
5. Image optimization.
6. JS & CSS minify and optimize.
7. Removed un-used plugins
8. Leverage browser caching(add code in .htaccess)
9. use lazy loadinghttps://stackoverflow.com/questions/50095162
复制相似问题