How to Enable GZIP Compression on Apache Server For Page Speed Optimization?

What is GZIP Compression?

When a user visits your website a request is made to the web server to deliver the requested data. The response of the server is directly proportional to the size in MB/KB of the page as generally all pages contain video, images, and textual part. so as page size bigger response time will be higher.

Gzip facilitate to compress your web pages video, image, and textual and style sheets before serving the request them over to the browser. This really reduces response time since the files are now in less size due to compression.

Gzip is the technique right now most affecting in the all speed optimization concept.

How to Apply GZIP to Apache Server Website?

First of all, you need to have a “.htaccess” file, If not create it and edit with the following code.

<IfModule mod_deflate.c>
  # Compress HTML, CSS, JavaScript, Text, XML and fonts
  AddOutputFilterByType DEFLATE application/javascript
  AddOutputFilterByType DEFLATE application/rss+xml
  AddOutputFilterByType DEFLATE application/vnd.ms-fontobject
  AddOutputFilterByType DEFLATE application/x-font
  AddOutputFilterByType DEFLATE application/x-font-opentype
  AddOutputFilterByType DEFLATE application/x-font-otf
  AddOutputFilterByType DEFLATE application/x-font-truetype
  AddOutputFilterByType DEFLATE application/x-font-ttf
  AddOutputFilterByType DEFLATE application/x-javascript
  AddOutputFilterByType DEFLATE application/xhtml+xml
  AddOutputFilterByType DEFLATE application/xml
  AddOutputFilterByType DEFLATE font/opentype
  AddOutputFilterByType DEFLATE font/otf
  AddOutputFilterByType DEFLATE font/ttf
  AddOutputFilterByType DEFLATE image/svg+xml
  AddOutputFilterByType DEFLATE image/x-icon
  AddOutputFilterByType DEFLATE text/css
  AddOutputFilterByType DEFLATE text/html
  AddOutputFilterByType DEFLATE text/javascript
  AddOutputFilterByType DEFLATE text/plain
  AddOutputFilterByType DEFLATE text/xml

  # Remove browser bugs (only needed for really old browsers)
  BrowserMatch ^Mozilla/4 gzip-only-text/html
  BrowserMatch ^Mozilla/4.0[678] no-gzip
  BrowserMatch bMSIE !no-gzip !gzip-only-text/html
  Header append Vary User-Agent
</IfModule>


After Applying the code to the htaccess test the website URL with a 
https://checkgzipcompression.com/

Metizsoft Solutions Pvt. Ltd.

Chetan Sheladiya

Driven by emerging tech stacks, Mr. Chetan has over a decade of experience in the IT and digital landscape. He specializes in online business marketing, web and mobile app development, and other niches. He loves sharing his ideas and opinions with like-minded people.

Recent Posts

Shopify Dropshipping 2024: The Ultimate eCommerce Guide!

The eCommerce world is rising and multiplying with every business and customer demand. Many eCommerce…

1 week ago

What is Artificial Intelligence (AI)? A Comprehensive Guide!

Hey Siri, Alexa, or Google Assistance, please show me the best bakery nearby or help…

2 weeks ago

History of Artificial Intelligence (AI): The Rise of Machines & Technology

Throughout the centuries leading up to the 1950s, numerous philosophical and logical concepts emerged, laying…

3 weeks ago

Top 10 Mistakes to Avoid During eCommerce Website Development!

In today's tech-driven world, bringing businesses online has become a new norm. And why not?…

3 weeks ago

Unleashing Efficiency: Streamline IT Operations with RPA!

Organizations tirelessly seek ways to optimize operations and boost productivity in today's fast-paced digital landscape.…

3 weeks ago

What is AWS Data Pipeline? Role, Components, and Benefits Explained!

The cloud giant Amazon Web Services (AWS) is a hub for many dynamic and game-changing…

3 weeks ago