I know this doesn't really answer your question, but I thought it was worth pointing out. IIS doesn't really support the URL hack you are using. Yes, it works now, but it might not in the future. In fact there is already some IIS patch that makes logging URLs of that form not work correctly. If you read the HTTP specification you will notice that no server is regarded to keep any URL information after the file name, but before the question mark. According to the specification, the only data that should appear after the file name is in fact query strings and bookmarks.
I understand your need for search engine friendly URLs, but this not the way to do it. -Matt > -----Original Message----- > From: Stephen R. Cassady [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, June 26, 2002 4:12 PM > To: CF-Talk > Subject: CFMX not reading .html files like CF5! Very bad! > > Just upgraded to CFMX and found this out! > Help! This is really really BAD! > Under CF5 we ran a parse of the URL > > <cfloop list="#removeChars(cgi.path_info,1,len(cgi.script_name))#" > delimiters="/" index="variableSet"> > <cfscript> > variableName = "url." & listGetAt(variableSet,1,'.'); > expression = listGetAt(variableSet,2,'.'); > </cfscript> > <cfparam name="#variableName#" default="#expression#"> > </cfloop> > > To all us to have > http://www.spankmag.com/forums/disp_post.cfm/cc.33229/clt.30/page.html > This is better for search engines - no ? in the url, makes in get > searched. > > Anyways - we have several VERY LARGE SYSTEMS that are built this way! > Now, CFMX bites the dust each and every time - not reading the files > correctly! > Running IIS. > This is really important. > I don't want to rip MX out to make it better! > > Stephen R. Cassady > [EMAIL PROTECTED] > > FAQ: http://www.thenetprofits.co.uk/coldfusion/faq > Archives: http://www.mail-archive.com/[email protected]/ > Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists ______________________________________________________________________ Get the mailserver that powers this list at http://www.coolfusion.com FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/[email protected]/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

