how to use gzip compression on website with .htaccess file | tutorial
У вашего броузера проблема в совместимости с HTML5
Hello friends!! In this video i explain that how to use gzip compression on website with .htaccess file. Gzip Compression allows your server to compress big file in small file like: jpg,text,java,html etc. This technique increase your website performance.
gzip command such as compressing files are given below:
ifModule mod_gzip.c
mod_gzip_on Yes
mod_gzip_dechunk Yes
mod_gzip_item_include file .(html?|txt|css|js|php|pl)$
mod_gzip_item_include handler ^cgi-script$
mod_gzip_item_include mime ^text/.*
mod_gzip_item_include mime ^application/x-javascript.*
mod_gzip_item_exclude mime ^image/.*
mod_gzip_item_exclude rspheader ^Content-Encoding:.*gzip.*
/ifModule
thanks for watching!!!