我正在构建一个 django web 应用程序。我正在为 html 使用 adobe 括号,并且我正在尝试使用网站上我的文件夹中的图像。图像出现在括号模拟期间,但不在 django runserver 期间。
这是我的文件夹目录:
mysite-
Images-
livestream-
helloworld.jpg
templates-
livestream-
helloWorld.html
这是该站点的一个非常简化的版本,但您明白了。
我的 html 代码要求提供图像:
<img src="../../Images/livestream/helloworld.jpg" alt="helloWorld" width="590" height="269">
当我运行 django 服务器时,它返回:
[18/Jul/2013 09:11:40] "GET /livestream/Images/livestream/helloworld.jpg HTTP/1.1" 404 2605
有谁知道如何解决这个问题?