在首页以外的其他页面中,图像src中断

时间:2019-05-30 15:15:48

标签: html css

我的图片位于

images/icons/artist_default.png

因此,当我进入主页时,将显示该图像,并且如果我看到该路径,则如下所示:

http://localhost:7777/images/icons/artist_default.png

但是,在这样一个http://localhost:7777/user/giorgio-martini这样的用户页面中,它中断了,并且路径看起来像这样:

http://localhost:7777/user/images/icons/artist_default.png

如您所见,它是错误的,它在它之前添加了users参数。.因此它破了。

我不知道该如何解决,我不应该添加完整的路径,它感觉不正确...但是如何使img指向正确的位置?

谢谢

1 个答案:

答案 0 :(得分:4)

以斜杠('/')开始图像源。这意味着它将始终从基本路径开始。 代替

<img src="images/icons/artist_default.png">

使用此

<img src="/images/icons/artist_default.png">