Home > Article > Backend Development > PHP implements gzip configuration method in apache environment, apachegzip_PHP tutorial
This article describes the example of php implementing gzip configuration method in apache environment. Share it with everyone for your reference. The details are as follows:
1. conf/httpd.conf
1) Remove the comment # in front of #LoadModule headers_module modules/mod_headers.so,
2) Add LoadModule deflate_module modules/mod_deflate.so,
3) Remove the comment # in front of #Include conf/extra/httpd-vhosts.conf.
2. conf/extra/httpd-vhosts.conf
Add
in VirtualHost
<Location "/"> SetOutputFilter DEFLATE BrowserMatch ^Mozilla/4 gzip-only-text/html BrowserMatch ^Mozilla/4\.0[678] no-gzip BrowserMatch \bMSIE !no-gzip !gzip-only-text/html SetEnvIfNoCase Request_URI \.(?:gif|jpe?g|png)$ no-gzip dont-vary Header append Vary User-Agent env=!dont-vary </Location>
For example:
<VirtualHost *:80> DocumentRoot "D:/Apache2.2/htdocs/wef" <Location "/"> SetOutputFilter DEFLATE BrowserMatch ^Mozilla/4 gzip-only-text/html BrowserMatch ^Mozilla/4\.0[678] no-gzip BrowserMatch \bMSIE !no-gzip !gzip-only-text/html SetEnvIfNoCase Request_URI \.(?:gif|jpe?g|png)$ no-gzip dont-vary Header append Vary User-Agent env=!dont-vary </Location> </VirtualHost>
I hope this article will be helpful to everyone’s PHP programming design.