I have recently workied on a site where someone hired someone to work on said site and called themselves good. They crashed the site..
The first changes I seen where '[edit] (hyphens) were in it i.e. (.htaccess)
BrowserMatch \bMSIE !no-gzip !gzip-only-text/html
# Don't compress images/archives/music/video/etc
SetEnvIfNoCase Request_URI \.(?:gif|jpe?g|png)$ no-gzip don't-vary
SetEnvIfNoCase Request_URI \.(?:exe|t?gz|zip|bz2|sit|rar)$ no-gzip don't-vary
SetEnvIfNoCase Request_URI \.(?:avi|mov|mp3|mp4|rm|flv|swf|mp?g)$ no-gzip don't-vary
Once those were changed from
SetEnvIfNoCase Request_URI \.(?:gif|jpe?g|png)$ no-gzip don't-vary
to
SetEnvIfNoCase Request_URI \.(?:gif|jpe?g|png)$ no-gzip dont-vary
The site worked again.
Hope this helps some members..