I am using CFcontent to deliver html pages stored in the webserver root, since I can't protect html pages with passwords & application.cfm.
I can call the html pages fine using code like this:
<cfif ISDEFINED('URL.FileName')>
<cfcontent TYPE ="text/html"
FILE = "<cfelse>
But, of course, the images are all relative to the and are not being called in with the pages.
These html pages are managed by another person using different software and I can't modify their code. And moving the images to where the browser expects them to be is not possible since they are updated often.
Is there any way I can bring in the images along with the html pages?
I can call the html pages fine using code like this:
<cfif ISDEFINED('URL.FileName')>
<cfcontent TYPE ="text/html"
FILE = "<cfelse>
But, of course, the images are all relative to the and are not being called in with the pages.
These html pages are managed by another person using different software and I can't modify their code. And moving the images to where the browser expects them to be is not possible since they are updated often.
Is there any way I can bring in the images along with the html pages?