Server Side Includes and GZip?
Is it possible to use GZip compression 开发者_开发百科on the ouput of files that have been created using server side includes in IIS 6? If so how?
If IIS can't do this internally, you can do it with reverse proxy techniques. Basically, the app runs on the server doing the SSI, but outsiders talk to your proxy server which does compression, and gives you a chance to do other clever things, like caching.
精彩评论