根据 HTTP 请求发送预压缩文件

发布于 2024-12-27 15:42:01 字数 168 浏览 2 评论 0原文

我刚刚了解了现代浏览器和网络服务器的 gzip 压缩功能。 如果我理解正确的话,服务器会根据浏览器的请求进行动态压缩。

但: 我在网络服务器上有一些静态的、经过 gzip 压缩的 json 文件。我想简单地发送这些,而不是在每次请求时压缩它们。 这可能吗?

预先感谢,

I just learned about the gzip-compression features of modern browsers and webservers.
If I understood right, the server compresses on request of the browser and on the fly.

But:
I have some static, gzip'ed json files on a webserver. I would like to simply send those, not compress them each time they are requested.
Is that possible?

Thanks in advance,

m

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

旧情别恋 2025-01-03 15:42:01

这是 .htaccess,对我有用:

RewriteEngine On

RewriteCond %{HTTP:Accept-Encoding} gzip
RewriteCond %{REQUEST_FILENAME}.gz -s
RewriteRule ^(.+) $1.gz [L]

AddEncoding x-gzip .gz

<FilesMatch .*\.htm.gz>
    ForceType text/html
</FilesMatch>

<FilesMatch .*\.html.gz>
    ForceType text/html
</FilesMatch>

<FilesMatch .*\.css.gz>
    ForceType text/css
</FilesMatch>

<FilesMatch .*\.js.gz>
    ForceType text/javascript
</FilesMatch>

Here is .htaccess, that works for me:

RewriteEngine On

RewriteCond %{HTTP:Accept-Encoding} gzip
RewriteCond %{REQUEST_FILENAME}.gz -s
RewriteRule ^(.+) $1.gz [L]

AddEncoding x-gzip .gz

<FilesMatch .*\.htm.gz>
    ForceType text/html
</FilesMatch>

<FilesMatch .*\.html.gz>
    ForceType text/html
</FilesMatch>

<FilesMatch .*\.css.gz>
    ForceType text/css
</FilesMatch>

<FilesMatch .*\.js.gz>
    ForceType text/javascript
</FilesMatch>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文