I can't seem to figure out how to create pages in CFWheels with clean URLs that contain "file" extensions.
I'd like to be able to do the following:
As apposed to this:
I've read through these docs but am still unclear about the actual implementation.
Lets say I have a controller (/controllers/Product.cfc) that looks something like the following:
<cfcomponent extends="Controller">
<cffunction name="init">
<cfset provides("html,json,xml")>
</cffunction>
<cffunction name="index">
<cfset products = model("product").findAll(order="title")>
<cfset renderWith(products)>
</cffunction>
</cfcomponent>
How do I implement the view? Should it be views/products/index.xml.cfm?
<?xml version="1.0" encoding="UTF-8"?>
<products>
<product><!-- product data goes here --></product>
</products>
How do I implement the routes.cfm?
I should note that I'm also using the default web.config and have <cfset set(URLRewriting="On")> in the config/setting.cfm.