Using php we can start gzip using the following code
The code returns false if the browser does not support compression and the default ob_start is called.
This is one way of optimizing your website, specially those sites that load multiple images and files.
ob_start("ob_gzhandler");
The code returns false if the browser does not support compression and the default ob_start is called.
This is one way of optimizing your website, specially those sites that load multiple images and files.
Post a Comment