有没有办法压缩 kohana 的输出?
好吧,我想有一些方法可以 gzip html。添加 ob_start('ob_gzhandler');
到 index.php 或主应用程序控制器中。但我希望有更好的解决方案。此外,我希望它应用于所有文本输出,即 css、js,就像回到 CI 中一样。也许是一个模块什么的?或者唯一的方法是覆盖 HTML 类中的 View::capture 方法和其他方法?
使用 kohana 3.2,几乎是新手。
哦,我不想为此使用 htaccess。当然如果可以的话。
提前感谢
Well, i guess there are some ways to gzip html. Addob_start('ob_gzhandler');
to index.php or in the main app controller. But i hope there is a better solution. In addition i want it applied to all text outputs, i.e. css, js like it was back in CI. Maybe a module or something? Or the only way is to overwrite View::capture method and other methods in HTML-class?
Using kohana 3.2, pretty much newbie.
Oh, and i don't want to use htaccess for that. If it's possible of course.
Thanx in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我建议在您的网络服务器中使用 gzip 压缩。
I'd recommend using gzip compression in your webserver.