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

时间:2017-04-26 07:52:48

标签: php .htaccess compression gzip deflate

根据checkgzipcompression我所有的.js和.css都是正确的GZIP压缩 除了我的php网页:

www.website.nl/ webpages.php 似乎没有被压缩,导致浪费了75%"数据传输。我的.htaccess文件以下面的内容结束。这里需要改变什么才能让我的php网页正常运行GZIP压缩? (从/ include /文件夹中删除.php文件,因为它们不是"转移到浏览器"并在内部处理,因此它们不需要压缩)。谢谢!

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

enter image description here

1 个答案:

答案 0 :(得分:1)

在浏览器中以.php扩展名提供的页面被视为html。 PHP使用Content-Type&#34; text / html&#34;默认情况下。

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

祝你好运!