I'm using Framework One (FW/1), Coldfusion 10 and trying to use Tuckey URLRewriteFilter to remove the index.cfm from the URL. I have generateSES set to true and SESOmitIndex to true in the FW/1 settings
I have the following code in my urlrewrite.xml file
<rule>
<from>^/(.*)$</from>
<to last="true">/index.cfm/$1</to>
</rule>
When I go view the application, I get a 404 error, so I dumped the CGI scope in my onMissingTemplate() method and I see the following keys that caught my eye.
PATH_INFO m/
PATH_TRANSLATED C:\Coldfusion10\cfusion\wwwroot\index.cf
CF_TEMPLATE_PATH C:\Coldfusion10\cfusion\wwwroot\index.cf
SCRIPT_NAME //index.cf
It seems like it is butchering the Request/Context etc. I've seen some other posts here on SO, but without any answers.
I'm using ColdFusion 10 on my local Windows Vista machine with the local built in webserver.
Can anyone shed some light in what I'm doing wrong or why this is happening? I'm using the URLRewriteFilter version 4.0.3 http://urlrewritefilter.googlecode.com/svn/trunk/src/doc/manual/4.0/index.html