Pages

Showing posts with label lightspeed disable gzip. Show all posts
Showing posts with label lightspeed disable gzip. Show all posts

Saturday, December 7, 2013

How to disable gzip output on lightspeed server accounts

You can use .htaccess to disable gzip output if your website is running under a lightspeed server.
Open .htacess file and append following lines.
php_flag zlib.output_compression Off
RewriteEngine On
RewriteRule . – [E=no-gzip:1]
RewriteRule ^(.*)$ $1 [E=no-gzip:1]