I have a custom HTTP web server, whenever I browse to it, let say: http://hotname:port it redirects to this:
The server runs from: /home/user/app_web/bin/start.pl
I have a directory of HTMLs listed in: /home/user/app_web/static
while the server is running, one of the request I send to him is an HTML with a body having this img:
<img src="../static/page.html">
this page loads fine, but of the images in it, doesnt, which is in: "/home/user/app_web/static/image/1.jpg"
when I look at the HTML site the pages has loaded, it looks like:
http://hotname:port/base/../home/user/app_web/static/image/1.jpg"
I have no idea what am I doing wrong, also, I'm a newbie when it comes to web.
Thanks,