将 Gzip/Deflate 与 Codeigniter 结合使用以获得更好的性能
我正在使用 Codeigniter、PHP 框架和 apache2。
我已经在 apache2 中启用了 Gzip 和 deflate mod 并显示了 phpinfo()。当我运行 Yslow 时,它显示“使用 gzip 压缩组件的等级为 F”。
即使我改变了Codeigniter的config.php$config['compress_output'] = TRUE;
但没有效果。我有什么遗漏的吗?
I'm using Codeigniter a PHP framework and apache2.
I have enabled Gzip and deflate mod in apache2 and its showing phpinfo(). When I run Yslow it shows "Grade F on Compress components with gzip".
Even I changed the config.php of Codeigniter$config['compress_output'] = TRUE;
but there is no effect. Is any thing I'm missing.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你应该只为 CSS、html、js 启用 mod_deflate。
例如:
因为图像或视频已经被压缩,并且它们需要花费很多时间来尝试压缩。
php.ini 上还有一个压缩选项
也许它有帮助......
you should enable mod_deflate just for CSS, html, js.
Ex:
Because images or videos are already compressed and also they take a lot of time to try to compress.
Also there is a compress option on php.ini
Maybe it helps...