What is the difference between httpCompression and

2019-03-12 06:11发布

Looking at the node in a Web.config, I see that it allows both httpCompression and urlCompression elements. What's the difference between the two? I just want to do standard gzip, which one should I use?

1条回答
冷血范
2楼-- · 2019-03-12 06:47

urlCompression specifies what to compress and httpCompression indicates how to do the compression. If you're running on IIS7.5, you don't need to specify anything, both dynamic and static compression are enabled by default, both use gzip; here are some links on urlCompression and httpCompression.

查看更多
登录 后发表回答