File APIs for Java Developers
Manipulate DOC, XLS, PPT, PDF and many others from your application.
http://aspose.com/file-tools
A friendly place for programming greenhorns!
Big Moose Saloon
Search
|
Java FAQ
|
Recent Topics
Register / Login
Win a copy of
The Mikado Method
this week in the
Agile and other Processes
forum!
JavaRanch
»
Java Forums
»
Products
»
Other Open Source Projects
Author
problem with apache 2 + mod_deflate
Ajay Kamble
Ranch Hand
Joined: Jan 23, 2009
Posts: 51
posted
Jun 21, 2010 06:36:56
0
I was trying to setup mod_deflate compression in my apache server. I used the code given here:
http://httpd.apache.org/docs/2.0/mod/mod_deflate.html
Compress everything except images
<Location /> # Insert filter SetOutputFilter DEFLATE # Netscape 4.x has some problems... BrowserMatch ^Mozilla/4 gzip-only-text/html # Netscape 4.06-4.08 have some more problems BrowserMatch ^Mozilla/4\.0[678] no-gzip # MSIE masquerades as Netscape, but it is fine # BrowserMatch \bMSIE !no-gzip !gzip-only-text/html # NOTE: Due to a bug in mod_setenvif up to Apache 2.0.48 # the above regex won't work. You can use the following # workaround to get the desired effect: BrowserMatch \bMSI[E] !no-gzip !gzip-only-text/html # Don't compress images SetEnvIfNoCase Request_URI \ \.(?:gif|jpe?g|png)$ no-gzip dont-vary # Make sure proxies don't deliver the wrong content Header append Vary User-Agent env=!dont-vary </Location>
The problem that I have is I access URL
http://localhost/myapp
but when mod_deflate is on it redirects to
http://www.localhost.com/myapp
which fails.
How can I resolve this issue?
-Regards
Ajay
I agree. Here's the link:
http://ej-technologies/jprofiler
- if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
subject: problem with apache 2 + mod_deflate
Similar Threads
Can't config mod_deflate on apache2
Compression in Tomcat5/Apache2
Tomcat + Apache configuration servlet access problem
compressing HTTP responses (mod_deflate)
[WAS5] ibm http server problem
All times are in JavaRanch time: GMT-6 in summer, GMT-7 in winter