且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

如何在 XAMPP 服务器中启用 GZip 压缩

更新时间:2023-02-24 13:55:16

您可以通过在 apache 中设置适当的指令来进行压缩.

You do compression by setting appropriate directive in apache.

它会取消注释 apache conf 文件中的以下行:C:xamppapacheconfhttpd.conf

It goes uncommenting the following lines in your apache conf file: C:xamppapacheconfhttpd.conf

如果您的 xampp 安装文件夹是 C:xampp.

if your xampp installation folder is C:xampp.

这些是首先要取消注释的行:

and these are the lines to be uncommented first:

LoadModule headers_module modules/mod_deflate.so
LoadModule filter_module modules/mod_filter.so

也就是说,如果它们前面有#,你应该删除它们!

that is to say, if they have # before them, you should remove them!

然后把它放在你的 httpd.conf 文件的末尾:

Then put this at the end of your httpd.conf file:

SetOutputFilter DEFLATE 

<Directory "C:/your-server-root/manual">  #any path to which you wish to apply gzip compression to!
    <IfModule mod_deflate.c>
        AddOutputFilterByType DEFLATE text/html  # or any file type you wish
    </IfModule>
</Directory>