我目前正在尝试显示具有相对路径的图像,但它无法正常工作!我正在尝试的路径是:
pictures/picture.png
但它总是说图像不存在。然后我会尝试:
sitename/profiles/pictures/picture.png
仍然无效。然后我会终于尝试:
http://localhost/sitename/profiles/pictures/picture.png
它终于奏效了。我试图像这样显示它:
<img src="pictures/picture.png" />
为什么相对路径不起作用?请帮忙!!! :(
更新 这是我的导演:
Sitename
Profiles
Pictures
image.png
ProfilesPicture <--- Where I want to run the image
答案 0 :(得分:0)
似乎在你们都帮助我之后,尤其是@Afshin,我能够解决我的问题! :)正确的SRC是 ../ pictures / picture.png 。我通过在浏览器中复制图像位置找到了这个! :d
答案 1 :(得分:-1)
这应该可以解决问题
<img src="http://localhost/sitename/profiles/pictures/picture.png">