I have the following 3 rules at /.htaccess

AddOutputFilterByType DEFLATE text/html text/plain text/css application/json
AddOutputFilterByType DEFLATE text/javascript application/javascript application/x-javascript 
AddOutputFilterByType DEFLATE text/xml application/xml text/x-component

All of those mime types get served deflated except website home page which is text/html... Website: poker10.com

Any suggestions?

link|improve this question
You can answer your question and accept it later. See this blog post: blog.stackoverflow.com/2011/07/… – splattne Jul 18 '11 at 14:51
feedback

2 Answers

According to http://www.gidnetwork.com/tools/gzip-test.php your 2 index pages www.poker10.com/index.html and poker10.com/index.php are served gzip. So for now I do not see where is the problem ?

In case you need to conserve some resources on your server I suggest to stop using .htaccess file and move it's content in the main config file.

link|improve this answer
Well, I have fixed the problem in the meanwhile. That's why they are gzipped now. The problem was in php zlib library, but I didn't know how to close this question. ): – aLfa Nov 28 '10 at 16:58
feedback
up vote 1 down vote accepted

As I said in a comment before, the problem was in PHP.

link|improve this answer
1  
Can you provide some information that might help the next person to encounter this problem (What was the problem? *How did you fix it?)? – voretaq7 Nov 9 '11 at 18:42
feedback

Your Answer

 
or
required, but never shown

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