[REBOL] Re: cgi path
From: SunandaDH::aol::com at: 8-Aug-2005 5:27
Kai:
> Using the script below, it now finds and displays the files.
> But all relative links from the files displayed via the Rebol script
> (to images & css scripts) are broken.
Personally, I'd always use absolute links in a web page. That has several
advantages, including protection against "302 hijacking".
src="images/header.png"
should work, and find the file
http://www.yoursite.com/images/header.png
So, the question is, "where is your server looking for the images file?"
I would guess it is supposed to be a subfolder of httpdocs/. But there may be
a configuration option that says otherwise.
What happens if you type
http://www.yoursite.com/images/header.png
directly into a browser window?
Sunanda.