I would like to enable brotli compression on my website. I'm currently serving it from the "PHP+Apache symbolic link" application.
I've tried adding this to my .htaccess file:
"AddOutputFilterByType BROTLI_COMPRESS text/html text/plain text/xml text/css text/javascript application/javascript"
That line is taken from here: https://httpd.apache.org/docs/trunk/mod/mod_brotli.html#recommended
Adding that line gives me an HTTP 500 internal server error when I try to access my site. I wonder if mod_brotli is enabled?
I would also like to pre-compress the content using this sort of config: https://httpd.apache.org/docs/trunk/mod/mod_brotli.html#precompressed
It looks like that method does not require brotli on the server (and of course should be faster) so perhaps that is the way to go?
Thanks,
Stephen.