Hello,
 
I recently installed Tomcat 3.2.1 on my machine and have
it working with Apache. I noticed that when I get a session ;jessionid, I get a 404 not found.
After doing some research I found out that the new implementation
has stricter rules for mapping a URL to a filename. I recompiled
my version of apache with mod_rewrite support, and added
the following lines to my httpd.conf.
 

<IfModule mod_rewrite.c>
  RewriteEngine On
  RewriteRule  ^(/.*;jsessionid=.*)$  $1  [T=jserv-servlet]
</IfModule>
 
I got this info from here:
 
 
When that didn't work I tried this:
 

       <LocationMatch \.jsp;jsessionid= >
                SetHandler jserv-servlet
        </LocationMatch>
 
I am unable to get past this issue and I wondering if someone
can point out to me how to fix this, or what I am potentialy
doing wrong. I'm using the automatically generated mod_jserv conf file if that is any clue.
Thanks a bunch,
 
Cono
 
 

Reply via email to