
January 22nd, 2012, 04:33 PM
|
 |
Code Monkey V. 0.9
|
|
Join Date: Mar 2005
Location: A Land Down Under
|
|
You need to make sure that the images are being served from the same server URL, or at least using the HTTPS protocol.
If you are seeing the URL of the image files like you described, it means that you are trying to load them from a local file system... that's not the way to do it because as soon as you put the site live the images won't be accessible anyway because not a lot of other people have access to your internal file structure.
If you want to use the same URL to load the images just link them as
Code:
<img src="folder.file.jpg" />
If you want to make sure that they load from the right URL then it will need to be hard-coded into your page (you can and should use some kind of dynamic language like PHP or ASP to make sure that the base URL can be easily changed)
Code:
https://domain.com/folder/file.jpg
|