I just disabbled gzip in .htaccess file to test that and it fixed it but what is the proper way to address this? Gzip is off in global Config already!
more specifically these line:
#RewriteCond "%{HTTP:Accept-encoding}" "gzip"
#RewriteCond "%{REQUEST_FILENAME}\.gz" -s
#RewriteRule "^(.*)\.css" "$1\.css\.gz" [QSA]
# Serve gzip compressed JS files if they exist
# and the client accepts gzip.
#RewriteCond "%{HTTP:Accept-encoding}" "gzip"
#RewriteCond "%{REQUEST_FILENAME}\.gz" -s
#RewriteRule "^(.*)\.js" "$1\.js\.gz" [QSA]
# Serve correct content types, and prevent mod_deflate double gzip.
#RewriteRule "\.css\.gz$" "-" [T=text/css,E=no-gzip:1]
#RewriteRule "\.js\.gz$" "-" [T=text/javascript,E=no-gzip:1]
more specifically these line:
#RewriteCond "%{HTTP:Accept-encoding}" "gzip"
#RewriteCond "%{REQUEST_FILENAME}\.gz" -s
#RewriteRule "^(.*)\.css" "$1\.css\.gz" [QSA]
# Serve gzip compressed JS files if they exist
# and the client accepts gzip.
#RewriteCond "%{HTTP:Accept-encoding}" "gzip"
#RewriteCond "%{REQUEST_FILENAME}\.gz" -s
#RewriteRule "^(.*)\.js" "$1\.js\.gz" [QSA]
# Serve correct content types, and prevent mod_deflate double gzip.
#RewriteRule "\.css\.gz$" "-" [T=text/css,E=no-gzip:1]
#RewriteRule "\.js\.gz$" "-" [T=text/javascript,E=no-gzip:1]
Statistics: Posted by Tailwater — Wed May 08, 2024 9:51 pm