I've got a question about Admin Tools and the latest Joomla 4.4.4 update. After the update, there's a new post installation message that says the following:
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]
RewriteRule "\.js\.gz$" "-" [T=text/javascript,E=no-gzip:1,E=no-brotli:1]
Assuming I make any other admin tweeks and save, won't Admin Tools overwrite what I've manually edited? I'm not currently seeing any issues on the front end with respect to the current .htaccess file and J4.4.4, but I need to get some clarity on what all is going on here before I update any of my other Joomla sites to 4.4.4
Thank you.