0

I have copied the htaccess file from HTML5 Boilerplate into my httpd.conf file and restarted Apache, but for some reason, gzip compression is still not working:

I have tested to see if the modules referenced in this boilerplate code are loaded, and they seem to be, but perhaps with different names. Do I need to modify the module names so that the code works, or could the problem be elsewhere?

Modules:

Oliver Joseph Ash
  • 361
  • 3
  • 5
  • 14

1 Answers1

1

I was missing the mod_filter module, so I added this to my httpd.conf:

LoadModule filter_module modules/mod_filter.so
Oliver Joseph Ash
  • 361
  • 3
  • 5
  • 14