Removal of /servlet/ prefix in URLs with a filter
Hi,
I have a hosting service which maps /servlet/* URLs in Apache to a Tomcat instance. No problem with that. A url of http://www.server.com/servlet/login.do will be happily provided to Tomcat as http://www.server.com/login.do and everything will work.
Problem is, while developing, I want to work just with Tomcat, no Apache involved. For my purposes I think that some filter which could remove the servlet prefix if found would make my links work both on development and on production.
Is there any easy way of doing this rewriting of the URL? Any pointers to existing filters?

