views:

95

answers:

1

I'm using Railo 3.1 , Tomcat 6 , Apache 2.2.

I'd like to create a servlet-mapping that recognizes any path. e.g.

<servlet-mapping>
   <servlet-name>CFMLServlet</servlet-name>
   <url-pattern>/default/*.cfm/*</url-patter>
</servlet-mapping>

I know that this url-pattern is incorrect per the specification.

Since this I'm using a content manager, it doesn't make sense for me to have to update the web.xml file each time I create a new /default/thing.cfm file.

Any suggestions on how to implement this?

+1  A: 

Are you trying to do something like: http://jamiekrug.com/blog/index.cfm/2009/5/22/url-rewrite-goodies-for-apache-tomcat-railo-and-mura-cms

Tom Chiverton
Yes. Thank you!
frogstarr78