gpt4 book ai didi

php - 如何为 PHP 文件启用 mod_deflate?

转载 作者:行者123 更新时间:2023-12-04 00:10:13 25 4
gpt4 key购买 nike

我有一个 Liquid Web VPS 帐户,我已确保 mod_deflate 已安装并正在运行/处于事件状态。

我曾经通过 PHP 压缩我的 css 和 js 文件,以及我的 PHP 文件本身......但是,我现在正尝试通过 mod_deflate 执行此操作,它似乎适用于除 PHP 之外的所有文件文件。 (Txt 文件工作正常,css、js、静态 HTML 文件,只是没有通过 PHP 文件生成的文件。)我该如何解决这个问题?

(我在cPanel中使用了“优化网站”下的“压缩所有内容”选项,它在主目录(不是public_html,比它高一级)中创建了一个.htaccess文件,其文本与“压缩”完全相同除图像外的所有内容”示例 http://httpd.apache.org/docs/2.0/mod/mod_deflate.html )

.htaccess 文件:

<IfModule mod_deflate.c>
SetOutputFilter DEFLATE
<IfModule mod_setenvif.c>
# Netscape 4.x has some problems...
BrowserMatch ^Mozilla/4 gzip-only-text/html

# Netscape 4.06-4.08 have some more problems
BrowserMatch ^Mozilla/4\.0[678] no-gzip

# MSIE masquerades as Netscape, but it is fine
# BrowserMatch \bMSIE !no-gzip !gzip-only-text/html

# NOTE: Due to a bug in mod_setenvif up to Apache 2.0.48
# the above regex won't work. You can use the following
# workaround to get the desired effect:
BrowserMatch \bMSI[E] !no-gzip !gzip-only-text/html

# Don't compress images
SetEnvIfNoCase Request_URI .(?:gif|jpe?g|png)$ no-gzip dont-vary
</IfModule>

<IfModule mod_headers.c>
# Make sure proxies don't deliver the wrong content
Header append Vary User-Agent env=!dont-vary
</IfModule>
</IfModule>

最佳答案

自从我发布这个问题以来已经有一段时间了——我最终通过 PHP.ini 启用了 zlib 压缩,因此 zlib 压缩 PHP 输出,而 mod_deflate 压缩其他所有内容。

我在想它不工作的原因(mod_deflate 没有压缩 PHP 输出)与 PHP 作为 CGI 而不是 Apache DSO 运行有关...

关于php - 如何为 PHP 文件启用 mod_deflate?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2835818/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com