Cách Tạo Gzip Trong 10 Giây
At the front of my site , I used to create functional pluin gzip , after a while I kind of plugin to remove my site lighter .
Gzip is an important factor in SEO because it compresses the code and for users to surf the Web faster because your site has been compressed when users surf the Web .
Speed is a factor in the assessment factors to rank on google , if you use too many plugins in the wordpress theme your site will handle more and will take more processing time .
You copy and paste the following code into the file . Htaccess
# compress text, html, javascript, css, xml:
AddOutputFilterByType DEFLATE text/plain
AddOutputFilterByType DEFLATE text/html
AddOutputFilterByType DEFLATE text/xml
AddOutputFilterByType DEFLATE text/css
AddOutputFilterByType DEFLATE application/xml
AddOutputFilterByType DEFLATE application/xhtml+xml
AddOutputFilterByType DEFLATE application/rss+xml
AddOutputFilterByType DEFLATE application/javascript
AddOutputFilterByType DEFLATE application/x-javascript
# Or, compress certain file types by extension:
<files *.html>
SetOutputFilter DEFLATE
</files>
finished , you can check their website to see if gzip is not functional , this depends on the server has gzip enabled or not .