.php 文件未压缩,而 GZIP 在 .htaccess 中设置

.php files are not compressing, while GZIP is set in .htaccess

根据 checkgzipcompression,我所有的 .js 和 .css 都正确地进行了 GZIP 压缩。
除了我的 php 个网页:

www.website.nl/webpages.php 似乎没有压缩,导致 "wasted" 数据传输增加了 75%。我的 .htaccess 文件以以下内容结尾。此处需要更改哪些内容才能使我的 php 网页正常运行 GZIP 压缩? (当然不包括 /includes/ 文件夹中的 .php 文件,因为它们不是 "transferred to the browser" 并且在内部处理,因此不需要压缩)。谢谢!

# compress speficic filetypes
<IfModule mod_deflate.c>
<FilesMatch "\.(js|css|txt|php)$">
    SetOutputFilter DEFLATE
</FilesMatch>
</IfModule>

在浏览器中以 .php 扩展名提供的页面被视为 html。 PHP 默认使用 Content-Type "text/html"。

我会说,找出你的网络服务器是什么,然后找出正确的压缩方法。

祝你好运!