Trying to fix a client's website. It's WordPress (inb4hatred). Without going through the actual problem, I discovered this .htaccess file buried among the file structure. I have some knowledge of .htacess, but this is way beyond me. Just wondering if someone would be able to tell me what this means.
# BEGIN W3TC Page Cache cache
Options -MultiViews
<Files ~ "\.(html|html_gzip|xml|xml_gzip)$">
Allow from all
</Files>
FileETag None
AddDefaultCharset UTF-8
<IfModule mod_mime.c>
AddType text/html .html_gzip
AddEncoding gzip .html_gzip
AddType text/xml .xml_gzip
AddEncoding gzip .xml_gzip
</IfModule>
<IfModule mod_deflate.c>
SetEnvIfNoCase Request_URI \.html_gzip$ no-gzip
SetEnvIfNoCase Request_URI \.xml_gzip$ no-gzip
</IfModule>
<IfModule mod_headers.c>
Header set X-Pingback "http://[WEBSITEOBSCURED]/xmlrpc.php"
Header set Vary "Accept-Encoding, Cookie"
</IfModule>
# END W3TC Page Cache cache
I did find a lot of *.html_gzip files in very suspect folders, so that's why I am wondering about this.
Thanks guys!