Greetings! I'm hoping someone has some insight with a problem I'm having...
I've installed Taffy 1.0-98 and had things working great using the "index.cfm/my/uri/here" syntax. So the next logical step was getting the URL Rewriting going right? Well unfortunately I've hit a wall :(
I'm running CF 9 on IIS6 with IIRF 2.1 installed. Here's what my ini file looks like, pulled right from the wiki with a slightly different path:
RewriteRule ^/blue-steel/api/(.*)$ /blue-steel/api/index.cfm/$1
Now, when I access the previously working api minus "index.cfm" I have a few different problems:
So, my first thought was "Ok the RewriteRule is wrong" and I changed it to this:
RewriteRule ^/blue-steel/api/(.*)$ /blue-steel/foo.cfm?value=/$1
foo.cfm was simply:
<cfoutput>The uri is: #value#</cfoutput>
Which worked fine proving that the RewriteRule WAS doing its job.
As previously mentioned, the api on it's own works fine using "index.cfm" it's just when I try the URL Rewriting that it stops.
Thanks in advance for any help! Sorry I'm a bit of a n00b.
Casey