如何配置 apache 来提供已经压缩的文件?
我想知道是否可以配置 apache 来传递已在文件系统上压缩的文件。
我提到我希望 apache 使用 HTTP 压缩协议来传递这些文件。
如果可能的话,它应该像这样工作:file.txt.gz
存储在服务器上,并且客户端(支持压缩)发出对文件file.txt
的请求,服务器将压缩文件发送给客户端。
I would like to know if it is possible to configure apache to deliver files that are already gzipped on the filesystem.
I mention that I want apache to deliver these files using HTTP compression protocol.
If this is possible it should work like this: A file.txt.gz
is stored on the server and a client (supporting compression) makes a request for file file.txt
, the server would send the compressed file to the client.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据此页面的作者,您可以提供压缩文件。首先,添加类型处理程序:
然后将所有对 *.txt 的请求重写为 *.txt.gz:
According to the author of this page, you can serve your compressed files. First, add a type handler:
Then rewrite all requests for *.txt to *.txt.gz: