vote up 2 vote down star
1

I am compressing html files with gzip.
The browser (FF 3.0.10) does not decompress or display index.html.gz (pre-compressed on the server) when I request index.html

Where can I confirm the zipped header "content-encoding" and the browsers "Accept-Encoding"? (I am using the zlib API in C for zipping)

Thanks.

flag

59% accept rate
1  
How is the delivery of your .gz implemented? – Gumbo May 14 at 16:45
Like this: stackoverflow.com/questions/859155/… – Tommy May 14 at 17:08

2 Answers

vote up 1 vote down

if the browser sends

Accept-Encoding: gzip

you can compress the content of your http response, not the file on the server's file system. Then in your HTTP response you must set these headers:

Content-Length: totalBytes
Content-Encoding: gzip
link|flag
Is the accepted answer wrong here? stackoverflow.com/questions/858830/… – Tommy May 14 at 17:06
isn't the file the content of the response anyway? – wds Jun 9 at 14:48
vote up 0 vote down

(You should also set Vary: Accept-Encoding in the response, technically, to make it clear to caches that the response will be different depending on this request header.)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.