The request is going to go to the cf server anyway. You wont get a request to a .cfm file never get to the cf server is the page does not exist anyway so you may aswell catch it and handle it yourself.
From: Kai Koenig [mailto:[email protected]] Sent: Wednesday, 23 February 2011 12:59 PM To: [email protected] Subject: Re: [cfaussie] IIS7 URL Rewrite / CF I tell you why - to let the HTTP server do what it can do best and avoid having your request get to CF in the first place if it's unnecessary. Mod_rewrite and Helicon ISAPI Rewrite are awesome and the RegExps one write are pretty much cross platform. IIS 7 built-in URL rewrite (obviously, it's MSFT) doesn't adhere to the defacto standards defined by the two former. I really don't know why people are still using the url rewrite stuff. You can do the same thing using the onMissingTemplate() method and handle it all from the cfml side, and it is cross platform -- You received this message because you are subscribed to the Google Groups "cfaussie" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/cfaussie?hl=en. -- You received this message because you are subscribed to the Google Groups "cfaussie" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/cfaussie?hl=en.
