Mar 23, 2001 #1 esfinks Programmer Feb 28, 2001 7 AE I know that the '../filename.cfm' means go up one level. But how can i tell coldfusion to go up to the root automatically? <esfinks></esfinks>
I know that the '../filename.cfm' means go up one level. But how can i tell coldfusion to go up to the root automatically? <esfinks></esfinks>
Mar 24, 2001 #2 strantheman Programmer Mar 12, 2001 333 US Directory references differ slightly depending on the command, but if you're just talking about links or CFINCLUDE try '/index.html' from anywhere. I always set a variable for the site root, so I can always force it if necessary. <CFSET root = "http://www.strantheman.com"> <a href="#root#/index.cfm">home</a> Upvote 0 Downvote
Directory references differ slightly depending on the command, but if you're just talking about links or CFINCLUDE try '/index.html' from anywhere. I always set a variable for the site root, so I can always force it if necessary. <CFSET root = "http://www.strantheman.com"> <a href="#root#/index.cfm">home</a>