I'm using an .htaccess file to allow my pages to call gzipped JavaScript files.
It works fine in ie8 & ff3, but the script is not loaded in Safari (or Chrome).
Here is the .htaccess file I'm using:
<files *.js.gz>
ForceType text/javascript
Header set Content-Encoding: gzip
</files>
Then, for example, I can call JS files from my HTML pages:
<script src="foo.js.gz"></script>
How can I modify the above .htaccess code to get it working for Safari (and still work for other browsers)?