Just started a site and I have an /img
directory on the main domain. I would like to set up a subdomain(where the file folder is just another one in the main directory) that is able to use the /img
folder, but it doesn't work.
The /img
and /subdomain
folders are on the same level, so to display images in the main domain I type: <img src="img/image.jpg">
and for the /subdomain
I type: <img src="../img/image.jpg">
and I get a 404 error for the site: http://subdomain.example.com/img/image.jpg As you can see, I want it to be linking to http://www.example.com/img/image.jpg
Can anyone tell me how to achieve this? I would prefer not to link images to their internet directory (i.e. http://www...) because I would like to modify the sites on my computer and upload them via ftp to my site hosted by bluehost.com.
I'm sure it's just something that I am messing up or don't completely understand. Thanks in advance!