<cfparam name="attributes.delimiter" default="/"> <cfset query_string_length=Len(cgi.path_info) - Len(cgi.script_name)> <cfif #query_string_length# neq 0> <cfset query_string=Right(cgi.path_info, query_string_length)> <cfset items=ListLen(query_string, attributes.delimiter)> <cfif items MOD 2 Is 0> <cfloop from="1" to="#items#" step="2" index="i"> <cfset i1=ListGetAt(query_string, i, attributes.delimiter)> <cfset i2=ListGetAt(query_string, i + 1, attributes.delimiter)> <cfparam name="url.#i1#" default="#i2#"> </cfloop> </cfif> </cfif>
We use this code in SiteDirector and it works pretty good. Stick this code at the top of each page, make sure you are using full paths to your images and links: http://www.domain.com/something/index.cfm Also, make sure your links are in the right format too http://www.domain.com/something/index.cfm/id/45/page/article ect.. Let me know if you have any questions! Paul Giesenhagen QuillDesign > Yeah I am having trouble accomplishing this. They have a tag for > it for fusebox apps, but I am not working on a fusebox site right > now. Any help doing so would be appreciated. > > > > > Douglas Brown > Email: [EMAIL PROTECTED] > ----- Original Message ----- > From: <[EMAIL PROTECTED]> > To: "CF-Talk" <[EMAIL PROTECTED]> > Sent: Wednesday, May 22, 2002 9:26 AM > Subject: RE: Search engine safe > > > > how do accomplish something like this? Never did this before. > Would be a > > good thing know. > > > > Anthony Petruzzi > > Webmaster > > 954-321-4703 > > [EMAIL PROTECTED] > > http://www.sheriff.org > > > > > > -----Original Message----- > > From: Philip Arnold - ASP [mailto:[EMAIL PROTECTED]] > > Sent: Wednesday, May 22, 2002 12:24 PM > > To: CF-Talk > > Subject: RE: Search engine safe > > > > > > > Would the following url be search engine safe? > > > http://www.autopartsland.com/Cart.cfm?model_id=21&make_id=4 > > > > > > Or would it need to be like so > > > http://www.autopartsland.com/Cart.cfm/model_id/21/make_id/4/ > > > > It depends on the engine, but I'd tend to use the slashed > version as all > > engines will like that > > > > Philip Arnold > > Technical Director > > Certified ColdFusion Developer > > ASP Multimedia Limited > > Switchboard: +44 (0)20 8680 8099 > > Fax: +44 (0)20 8686 7911 > > > > www.aspmedia.co.uk > > www.aspevents.net > > > > An ISO9001 registered company. > > > > > ****************************************************************** > **** > > This email and any files transmitted with it are confidential > and > > intended solely for the use of the individual or entity to whom > they > > are addressed. If you have received this email in error please > notify > > the system manager. > > > ****************************************************************** > **** > > > > > > > > > > ______________________________________________________________________ This list and all House of Fusion resources hosted by CFHosting.com. The place for dependable ColdFusion Hosting. 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

