将网站部署到GitHub时,所有图像仍然显示,但是一个图像会引发错误:
Failed to load resource: the server responded with a status of 404 ()
即使它们都具有相同的路径约定(即images/img-1.png
,images/img-2.png
...)。
文件夹结构:
app
├── index.html
├── images
│ ├── armin.png
│ ├── arrows.svg
│ ├── illumi.png // error
... other images
路径:
<img src="images/armin.png"> <!-- Works -->
<img src="images/illumi.png"> <!-- doesn't work! -->
为什么会这样以及如何解决?