Using search engine safe (SES) URL’’s in ColdFusion MX
There is an issue when using search engine safe (SES) URL’’s in ColdFusion MX where the ”?” is not used in the URL string. This was solved with Updater 3.0 however here is the work-around kindly provided by “AssetNow”.
Add a servlet mapping to the web.xml file found in C:\\CFusionMX\\wwwroot\\WEB-INF (for ColdFusion MX default installation).
<servlet-mapping>
<servlet-name>CfmServlet</servlet-name>
<url-pattern>*</url-pattern>
</servlet-mapping>
