Reputation: 35684
I've installed the coldfusion 9 server locally (the development standalone edition)
I'm trying to get the url rewriting to work, but I don't know what file it's reading (htaccess or web.config), though I'm guessing it's the later if it is reading it at all.
Any idea how to set up the server to use local(to subfolder) rewrite rules?
Upvotes: 0
Views: 851
Reputation: 3762
As has been stated on StackOverflow in other questions, the built-in webserver is primarily for convenience. To take full advantage of production-grade webserver configuration options (like mod_rewrite), your best bet is to install IIS or Apache.
Having said that, the sparse documentation on the built-in webserver can be found here.
Upvotes: 2