Is there any way to disable gzip for certain file names (globally)? The latest version of WordPress (2.8) creates stylesheets like this:
The output is getting gzipped so the dashboard does not load right.
I found this code:
In another post, but we can't have every client adding this for every wordpress install.
We're also still running 3.x on this particular server.
TIA
Code:
link href='style' href='http://blah.com/wp-admin/load-styles.php?c=1&dir=ltr&load=dashboard,plugin-install,global,wp-admin&ver=abcdefghi'
I found this code:
Code:
RewriteRule . - [E=no-gzip:1]
We're also still running 3.x on this particular server.
TIA