如何让我的服务器使用 gzip 压缩?

发布于 2024-11-01 19:18:15 字数 383 浏览 1 评论 0原文

我想让我的服务器对 html、php、javascript 和 css 文件应用 gzip 压缩。

我想我可以通过编辑 .htaccess 文件来做到这一点。有人能给我需要添加的确切代码吗?

另外,如果我将适当的代码添加到父目录中的 .htaccess 文件中,它是否也会自动应用于所有子目录?例如,如果我有 http://domain1.com 指向我的根目录并且 http://domain2.com 指向一个子目录,第二个域是否会提供压缩文件,而无需我也编辑该目录中的 .htaccess 文件?

谢谢

I'd like to make my server apply gzip compression to html, php, javascript and css files.

I think I can do it by editing the .htaccess file. Can someone give me the exact code that I would have to add?

Also, if I add the appropriate code to an .htaccess file in the parent directory, does it automatically apply to all sub-directories too? For instance, if I have http://domain1.com pointed at my root directory and http://domain2.com pointed at a sub-directory, will the second domain provide compressed files without me needing to edit the .htaccess file in that directory too?

Thanks

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

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

发布评论

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

评论(2

遗失的美好 2024-11-08 19:18:15

从 Peter Hall 在 mod_deflate 上引用的文档中:

AddOutputFilterByType DEFLATE text/html text/css text/plain text/javascript application/javascript

我相信关于沿着目录树传播到子目录的设置,答案是“是”。最好的办法是检查站点的响应标头(使用 FireBug 或类似的工具,您可以在其中观察网络流量)并验证内容是否已压缩。

From the document that Peter Hall referenced on mod_deflate:

AddOutputFilterByType DEFLATE text/html text/css text/plain text/javascript application/javascript

And I believe that the answer is "yes" about the setting propagating down the directory tree to subdirectories. The best thing to do is check the response headers from the site (using FireBug or similar tool where you can watch the network traffic) and verify that the contents are compressed.

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