I have a user that set up a subdomain, lets say:
http://bob.hisdomain.com
which of course automatically creates the folder in http://hisdomain.com/bob
The customer has uploaded an index file to the bob folder, however, he is using relative paths instead of URL paths in his links and images that are above his subdomain folder. For example he is trying to do this:
now, if he goes to http://bob.hisdomain.com the picture doesn't show up. But if he goes to http://hisdomain.com/bob it does show up.
I guess my question is, if he is using it as a subdomain, does it run as a different user or something that would now allow the subdomain to access folders above its own folder?
http://bob.hisdomain.com
which of course automatically creates the folder in http://hisdomain.com/bob
The customer has uploaded an index file to the bob folder, however, he is using relative paths instead of URL paths in his links and images that are above his subdomain folder. For example he is trying to do this:
PHP:
<img src = "../images/bob.jpg">
instead of
<img src = "http://hisdomain.com/images/bob.jpg">
I guess my question is, if he is using it as a subdomain, does it run as a different user or something that would now allow the subdomain to access folders above its own folder?