How to enable GZip compression in XAMPP server

前端 未结 4 1946
说谎
说谎 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 12:00

    Not sure why you have this code:

    LoadModule headers_module modules/mod_deflate.so
    

    But that didn't work for me, it returned an APACHE error on Apache/2.4.3 (Win32):

    12:57:10  [Apache]  Error: Apache shutdown unexpectedly.
    12:57:10  [Apache]  This may be due to a blocked port, missing dependencies, 
    12:57:10  [Apache]  improper privileges, a crash, or a shutdown by another method.
    

    I Had to use:

    LoadModule deflate_module modules/mod_deflate.so
    

提交回复
热议问题