When I updated Akeeba Admin Tools Pro with Joomla 4.4.4 the post-installation message was generated as shown below. I'm not sure if I should (a) manually make these changes, (b) have Admin Tools recreate .htaccess, (c) assume the Admin Tools update automatically took care of these changes. Please advise as to the desired option. Thanks. Dave Williams
===== post-installation messages
.htaccess Update Brotli CompressionSince version 4.4.4
Before 4.4.4 the default htaccess.txt did not support Brotli compression. This could result in double compression errors when Joomla is installed on a server that uses Brotli compression. You should manually apply the necessary changes to any existing .htaccess file, as this file can not be updated automatically.
The old code:
RewriteRule "\.css\.gz$" "-" [T=text/css,E=no-gzip:1]
RewriteRule "\.js\.gz$" "-" [T=text/javascript,E=no-gzip:1]
The new code:
RewriteRule "\.css\.gz$" "-" [T=text/css,E=no-gzip:1,E=no-brotli:1]Hide this message Archive .htaccess Update Concerning Setting the Content-Encoding Header Hide this message Read Again Improved Multi-factor Authentication Hide this message Read Again
RewriteRule "\.js\.gz$" "-" [T=text/javascript,E=no-gzip:1,E=no-brotli:1]