图像未出现在 hostgator (cPanel) 中但出现在本地主机中

Images not appearing in hostgator (cPanel) but appearing in localhost

出于某种原因,当我在 hostgator 索引文件(在 public_html 下)中引用 CSS 文件或图像文件时,它们根本不起作用,但当我在本地测试时它起作用了。这是我尝试使用通过 cPanel 上传到 public_html 文件夹的图像的示例:

<!DOCTYPE html>
<html>

<head>
<title>mydomain.com</title>
</head>

<h1>Here is an image</h1>
<img src="public_html/me.JPG" alt="pic of me">
<p style="background-color:#ECEBE9;">Here is more text

</p> 
</body>
</html>

我试过:

我假设路径很明显,但我真的不明白为什么 index.html 文件无法访问 CSS 或 hostgator 上同一文件夹中的图像文件,所以请让我知道还有什么可以尝试的。

如果 me.JPG 与 html 文档在同一文件夹中,请使用 src="me.JPG"

使用相对路径而不是绝对路径。

<img src="public_html/me.JPG" alt="pic of me">
  1. 你能拿 public_html 并使用唯一的 me.JPG 吗?
  2. 请检查图片扩展名是 .JPG 还是 .jpg?