what is this mean
<cfhttp method="get" url="http://localhost:8500/projects/test.txt" timeout="5" />
<cfset header = cfhttp.header />
<cfif listContainsNoCase(header, "200 OK")>
<cflocation url="http://localhost:8500/projects/test.txt">
<cfelse>
<cfset request.proginfo.pagemessage="The file was not found.">
<cflocation url="search.cfm">
</cfif>
hi the above is bit confusing i am relocating to search.cfm instead of opening url in cfhttp , but the file still exists on the same path and i am able to open it up with address http://localhost:8500/projects/test.txt
any one had idea about what it is doing?
Thanks
