How to enable GZip compression in XAMPP server

前端 未结 4 1949
说谎
说谎 2021-01-30 11:18

I am using xampp sever latest version to improve my web page performance.

I have to enable Gzip in XAMPP. How can it be done?

4条回答
  •  情话喂你
    2021-01-30 11:45

    Find apache\conf\httpd.conf

    uncomment the following line(remove #)

    LoadModule headers_module modules/mod_deflate.so
    

    some versions may require you to comment out the following lines instead.

    LoadModule headers_module modules/mod_headers.so
    LoadModule deflate_module modules/mod_deflate.so
    

    finally add this line to your .htaccess file.

    SetOutputFilter DEFLATE
    

提交回复
热议问题