February 2016
Beginner to intermediate
178 pages
3h 25m
English
Magento hosting services generally use Apache as a web server solution. Magento is written in PHP, and Apache has a mature environment to handle PHP processes.
In order to give fast response to visitors' requests, we will use Apache's mod_deflate to speed up server response.
According to Apache's official documentation (http://httpd.apache.org/docs/2.2/mod/mod_deflate.html), this module provides the deflate output filter that allows output from your server to be compressed before being sent to the client over the network.
To enable this feature on your server, you need to create the .htaccess file and enter the following code:
<IfModule mod_deflate.c> ############################################ ## enable apache served ...
Read now
Unlock full access