I am using Railo 3.1, Tomcat 6, Apache 2.2.
I would like to create a servlet mapping that recognizes any path. eg.
<servlet-mapping> <servlet-name>CFMLServlet</servlet-name> <url-pattern>/default/*.cfm/*</url-patter> </servlet-mapping>
I know this url pattern is incorrect for specification.
Since I use the content manager, it makes no sense for me to update the web.xml file every time I create a new /default/thing.cfm file.
Any suggestions on how to implement this?
source share