I'm trying to find out what the most efficient way is to redirect to pages in
this scenario: I want to display user friendly URLs like:
[url]http://www.mywebsite.com/city/state/county/mypage.cfm[/url] without creating the
directories on server. I really don't want to just add a meta or javascript
redirect or install any IIS extensions or I dont want to put a redirect in a
custom 404 error file on IIS. Some one told me that I can use the new
Application.cfc in CF MX 7.0 and trap onRequest() making any changes I would
like, rewriting URLs, extracting values, even putting them back into the URL
scope so that stuff will just work transparently. Does that make sense? In a
nutshell what I am trying to achieve is parsing a URL in order to set the
directory names as mentioned above. So using the URL above as an example 3
variables would be parsed and set. Thanks