Railo on Apache / Tomcat - Windows (Part 3) - Getting URL Rewriting works for ColdBox

Well I thought this was going to be an easy process, but it turned out to be little bit trickier than I thought.

Apparently there are a couple of ways to get ColdBox SES (Search Engine ) URL to work.

From what I gather from this ColdBox Forum Post, you can use one of the following:

For going down the mod_jk path - I have found the following blog post useful : Railo–Apache–Tomcat–Mura-CMS-SES-URL-Gotcha

I have added the following to my Apache virtual host file

[xml] <VirtualHost :80> JKMount / worker1 ServerName tomcat.ra.turboColdBox </VirtualHost> [/xml]

As well as adding the following on Tomcat web.xml file [xml] <servlet-mapping> <servlet-name>RailoCFMLServlet</servlet-name> <url-pattern>/index.cfm/*</url-pattern> </servlet-mapping> [/xml]