Speed Optimization

Nowadays fast & optimized website is a must, so we would like to present some optimization tips below that can optimize your overall website speed:

Enable gZIP Compression

To reduce the amount of data transferred between your server and visitors, enable gZIP compression for your images, CSS, and JavaScript files. This process compresses the content on the server (similar to creating a ZIP file) before it’s sent over the Internet. Your browser then decompresses the content before displaying it, which significantly reduces file sizes and speeds up page loading times.
To enable gZIP compression for your files, simply add the following lines to your `.htaccess` file in the root HTML directory:

<!-- ENABLE GZIP COMPRESSION -->
    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
    <!-- ENABLE GZIP COMPRESSION -->
Was this page helpful?

Leave a Reply

Your email address will not be published. Required fields are marked *