Skip to main content
Server Configuration

PHP: Enable zlib output compression

By June 22, 2013September 12th, 2019No Comments

You can enable php compression as it have a lot of benefits. It reduces the web traffic from host provider to your web. It speeds up the loading of your pages on clients PC. And it is supported by all newer web browser. All you have to do is to set “zlib.output_compression=on” in php.ini:

zlib.output_compression=on

Leave a Reply