"Dan" <> wrote in message
news: oups.com...
> Some relevant info:
>
> URLs (URIs), relative and absolute:
> http://webtips.dan.info/url.html
>
> Directories and Default Index Files:
> http://webtips.dan.info/subdir.html
>
+++ A URL with a slash at the start, like "/dir1/dir2/stuff.html",
+++ references a page at a path starting from the root of the server.
+++ To be more precise, it starts at the root of the domain name you're in.
Thanks Dan,
The path relative to server root was what I was looking for,
which I'm not sure that Toby mentioned. Wasn't interested
in climbing up or down notches in the tree.
I'm still having problems with one domain, actually a sub-domain,
where the root-relative relative paths don't seem to work. I haven't
figured
the root, quite yet.
Paste follows:
__________________________________
Thank you for using the directNIC.com Trouble Ticket System. The following
response is from a qualified directNIC customer support team member:
Date: 02/07/05 01:36pm
From: mbrunson
directNIC's links should be the same as any other webserver, since
it's more a function of the client software. There are several ways
to refer to a page on your site. Let's say you're on the page:
http://example.com/family/picnic/photo.html And want to link to a page:
http://example.com/fun/car/engine.html You could add the link in a
couple ways, such as:
http://example.com/fun/car/engine.html (absolute link)
/fun/car/engine.html (relative to the root)
.../../fun/car/engine.html (relative to the page you are on)
If you wanted to link to a page in the same directory, let's say:
http://example.com/family/picnic/menu.html You could do this with the
following:
http://example.com/family/picnic/menu.html (absolute link)
/family/picnic/menu.html (relative to the root)
../menu.html (relative the the current page)
menu.html (relative the the current page the "./" is inferred)
paste ends
+++++++++++++++++++++++++++
Thanks,
cc