You'll have to use static linking to make sure your base page is always the same. If the images are in www.yourdomain.com/images then in order for it to show up, you have to either use the full URL (i.e. http://www.domain.com/images/image.gif) or put a "/" (without the quotes) in front of the directory (which is essentially the same as writing out the whole "http://www.domain.com").
The way your code is written is for dynamic linking. Add a "/" in front of all of the image URLs and you should be good to go.
The only problem with this is if you do testing on a local machine, images won't show up (with some exceptions, of course, i.e. you're testing on a linux box or have all your documents in C: ).
|