You are here: apache » setting up gzip compress in apache 1 3 htaccess
Setting up GZIP compress in apache 1.3 - htaccess
- Written By
- PHPin24
- Submitted At
- 2009-07-20 18:47:06
- Num Views
- 1564
- Category
- Apache
|
Paste the following in your .htaccess file in the root of the project. <IfModule mod_gzip.c> mod_gzip_on Yes mod_gzip_dechunk Yes mod_gzip_keep_workfiles No mod_gzip_can_negotiate Yes mod_gzip_add_header_count Yes mod_gzip_send_vary Yes mod_gzip_command_version '/mod_gzip_status' mod_gzip_min_http 1000 mod_gzip_minimum_file_size 300 mod_gzip_maximum_file_size 512000 mod_gzip_maximum_inmem_size 60000 mod_gzip_handle_methods GET POST mod_gzip_temp_dir /tmp mod_gzip_item_include file \.html$ mod_gzip_item_include file \.php$ mod_gzip_item_include file \.pl$ mod_gzip_item_include file \.rb$ mod_gzip_item_include file \.py$ mod_gzip_item_include file \.cgi$ mod_gzip_item_include file \.css$ mod_gzip_item_include file \.js$ mod_gzip_item_include mime ^application/javascript$ mod_gzip_item_include mime ^application/x-javascript$ mod_gzip_item_include mime ^text/.* mod_gzip_item_include mime ^httpd/unix-directory$ mod_gzip_item_include handler ^cgi-script$ mod_gzip_item_include handler ^server-status$ mod_gzip_item_include handler ^server-info$ mod_gzip_item_include handler ^application/x-httpd-php mod_gzip_item_exclude mime ^image/.* </IfModule> If still you don’t get an A, for gzip compression it is most probably due to the fact that you are calling external files like JS, CSS or images. If that’s the case, you are out of luck unless you have some control over the external file. See the full version at http://www.think-press.com/337/how-to-gzip-your-site-components/ By PHPin24 @ 2009-07-20 18:47:06
|
