Hi,
Our web server is a combination of Apache http server and Tomcat server. When ever any request comes, first it will handled by Apache server.If it is type of .html or .htm or .log etc., then the Apache server will process it. If the request is type of .jsp, Apache will pass the request to Tomcat server and Tomcat server will process the request.
I deployed a java web application in Tomcat which having some servelt mapping for .html and .log. Since the Apache http server having the configuration to handle .html, the given request is not passed to Tomcat server.
I checked with our Admin, they confirmed me that, i can create a .htaccess file in the root directory, which having the configuration to ignore or redirect the .html request from being handled by Apache http server.
Is any one know what is the command/configuration i need to add in the .htaccess file ?
Since we do not have any admin access to server, it is impossible to do some techniques like mod_jk or mod_proxy :(