使用IIS6.0对没有扩展名的文件进行Gzip压缩
有人设法在 IIS6 的网站上激活 Gzip 压缩吗? 我们正在使用 Castle Monorail(顺便说一句,它非常好),因此拥有干净的 RESTful URL,没有扩展名...... ...... 还有一个问题 -> 据我们所知,我们需要在端点上进行扩展以允许 gzip 压缩。
看来唯一的出路是我们自己的 HTTPModule - 还有其他人知道其他方法吗?
干杯 伊安
Has anyone managed to activate Gzip compression on a website in IIS6 ?
We're using Castle Monorail (it's very nice btw) and as a result have clean RESTful URLs with no extensions.....
..... and there's the rub -> as far as we can see we need extensions on our endpoints to allow gzip compression.
It seems the only way out is our own HTTPModule - does anyone else know of any other way ??
Cheers
ian
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
嗯,我找到了一种方法......它是 HTTPModule 技术和 Monorail 过滤器的组合。
因此,Rick Strahl 的上述文章是演示使用 gzip / deflate 压缩的 web。 迷人的。 将这些技术与单轨 TransformFliter 结合使用应该可以很好地工作 。
还有其他方法,还是仍然需要编写代码?
Well I've found one way... it's a combination of the HTTPModule technique and Monorail filters.
So the article above by Rick Strahl is one of a number on the web that demonstrate using gzip / deflate compression. Lovely. Using these techniques with the a Monorail TransformFliter should work very nicely.
Any other ways, or still got to craft code ?
这是在 IIS6 中启用 gzip 压缩的一个很好的演练:
http://engineering.leads360.com/post/9301650692 /http-压缩-gzip-on-iis-6
This is a great walk-through on enabling gzip compression in IIS6:
http://engineering.leads360.com/post/9301650692/http-compression-gzip-on-iis-6