-
- readmanr

-
Total Posts: 27
Joined: 2009-02-17
Yorkshire, England, Great Britain, United Kingdom
|
After hours and hours with 1and1 support staff, I have found a good work around.
While using the mod_deflate method compresses .css, and all files for super speeds.
1and1 is not Apache2 and is supposed to have mod_gzip installed, however I couldnt get it working.
So making sure the methods of mod_gzip and mod_deflate are disabled, all you have to do is edit your index.php file and add the following code at the very top!
<? ob_start("ob_gzhandler"); ?>
That compresses each page fine.
While it isnt as good as using mod_deflate to do other files. You still see a huge performance boost!
|