图片无法加载。如何提供图像文件的路径。红帽 Linux、Apache v2.4.37

问题描述 投票:0回答:0

我已经使用这个 YouTube html 教程 编写了一个简单的网站,我想,我已经完全按照本教程中所示制作了所有内容,但图像无法加载。
我还用 this site 交叉检查了上面的教程,描述了

<img>
标签。

站点设置在虚拟主机上。 这是

/etc/httpd/conf/httpd.conf
文件的一部分,可能是相关的。

但网站本身加载正常。所以我想这不是虚拟主机部分的问题。只是那些图像文件没有加载。
有趣的是,

alt="man with a serious face expression, smoking a cigarette."
标签的
<img src="imgs/this_is_your_life_and_its_ending.jpg" alt="man with a serious face expression, smoking a cigarette.">
属性可以正确加载。 这是为什么?

这是网站外观的打印屏幕。
绿色箭头表示显示替代文本而不是图像的位置。

以下是网站文件存放目录的内容:

Fri Apr 21 [michal@Ora2 ~]$ sudo ls -lah /var/www/portal3/
total 16K
drwxr-xr-x. 5 root root   93 Apr 21 07:42 .
drwxr-xr-x. 7 root root   78 Apr 20 10:14 ..
drwxr-xr-x. 2 root root   73 Apr 20 10:07 imgs
-rw-r--r--. 1 root root 3.6K Apr 20 11:10 index.html
-rw-r--r--. 1 root root  12K Apr 21 07:42 .index.html.swp
drwxr-xr-x. 2 root root    6 Apr 19 17:54 Ora2_offdir
drwxr-xr-x. 2 root root    6 Apr 19 17:54 storage

以下是网站图片存放目录的内容:

Fri Apr 21 [michal@Ora2 ~]$ sudo ls -lah /var/www/portal3/imgs
total 2.6M
drwxr-xr-x. 2 root   root     73 Apr 20 10:07 .
drwxr-xr-x. 5 root   root     70 Apr 21 08:27 ..
-rw-rw-r--. 1 michal michal 2.3M Apr 20 10:03 this_is_your_life_and_its_ending.jpg
-rw-rw-r--. 1 michal michal 367K Apr 20 10:01 work_harder.jpg

html代码的一部分,图像放在网站上。

<!doctype html>

    <html>
      <head>
        <title>The best movies ever.</title>
      </head>
      <body>
        <h1>LabOra2_218:888 - from /var/www/portal3 dir.</h1>

        <h2>This is the list of the best movies ever !</h2>

        <img src="imgs/this_is_your_life_and_its_ending.jpg" alt="man with a serious face expression, smoking a cigarette.">
        <p>A nameless first person narrator (Edward Norton) attends support groups in attempt to subdue his emotional state and relieve his insomniac state. When he meets Marla (Helena Bonham Carter), another fake attendee of support groups, his life seems to become a little more bearable.</p>
        <p>However when he associates himself with Tyler (Brad Pitt) he is dragged into an underground fight club and soap making scheme. Together the two men spiral out of control and engage in competitive rivalry for love and power.</p>

        <p>LabOra2_218:888 is the server. The site you're currently on is located in <strong>/var/www/portal2/</strong> directory.</p>

        <img src="imgs/work_harder.jpg" alt="young man on the left plays the drums and there's an older man on the right, who screams something at him">
        <p>Nineteen-year-old Andrew Niemann wants to be the greatest jazz drummer in the world, in a league with Buddy Rich. This goal is despite not coming from a pedigree of greatest, musical or otherwise, with Jim, his high-school-teacher father, being a failed writer. Andrew is starting his first year at Shaffer Conservatory of Music, the best music school in the United States. At Shaffer, being the best means being accepted to study under Terence Fletcher and being asked to play in his studio band, which represents the school at jazz competitions.</p>

为什么图片加载不出来??

需要更改什么,以便加载图像 ??

html linux apache
© www.soinside.com 2019 - 2024. All rights reserved.