Re: mapping a html page request

2004-10-27 Thread Mark Lowe
If you change your servet mapping you can have whatever file suffix you want, change *.do to *.html beware that doing this will route all *.html requests through the action servlet. if you just need to forward to a static html page then Should work. Mark On Wed, 27 Oct 2004 13:24:57 -0400

RE: mapping a html page request

2004-10-27 Thread Lucero, Dennis M
thanks -Original Message- From: David G. Friedman [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 27, 2004 11:25 AM To: Struts Users Mailing List Subject: RE: mapping a html page request Dennis, Web server like tomcat have rewrite modules (mod_rewrite) where you can sense an

RE: mapping a html page request

2004-10-27 Thread David G. Friedman
Dennis, Web server like tomcat have rewrite modules (mod_rewrite) where you can sense an incoming URL and parse it to make it go where you wish. See: http://httpd.apache.org/docs-2.0/misc/rewriteguide.html Also, I'm not sure if a "filter" in a java web (or application) server might do the trick.