Home > Article > Backend Development > PHP implements gzip configuration and modification methods in apache environment
This article mainly introduces the gzip configuration method of PHP in the apache environment, and analyzes the modification techniques of related configuration files in more detail. It is of great practical value. Friends in need can refer to the example of this article.
Describes the gzip configuration method of php in the apache environment. 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.confAdd
<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>
to VirtualHost. 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>
Summary : The above is the entire content of this article, I hope it will be helpful to everyone's study.
Related recommendations:
php method to implement FTP file transfer based on curl
php reads the database Write operations and random number operations
php simulates QQ login based on curl operation
The above is the detailed content of PHP implements gzip configuration and modification methods in apache environment. For more information, please follow other related articles on the PHP Chinese website!