|
Posted by Dan on 11/23/84 11:43
dorayme wrote:
> When you type in your links, to use the examples you gave,
>
> src="http://home.att.net/~novice/beginner/homepage/me/pic1.jpg"
> src="http://home.att.net/~novice/beginner/homepage/me/pic2.jpg"
>
> type instead:
>
> src="/pic1.jpg"
> src="/pic2.jpg"
>
> and then search "/pic" and replace all with
> "http://home.att.net/~novice/beginner/homepage/me/pic"
That isn't going to work. With the leading slash in the "src"
references, they will be relative to the root of the given hostname, at
http://home.att.net/pic1.jpg, etc., which isn't what the original
poster wanted. The correct values are:
base href="http://home.att.net/~novice/beginner/homepage/me/"
img src="pic1.jpg", etc.
--
Dan
Navigation:
[Reply to this message]
|