apache2 não pode carregar imagens no Ubuntu

0
<!DOCTYPE html>
<html>
<head>
    <title></title>
</head>
<body>
<img src="a.jpg" alt = "Al Sheik" width="300px" height="300px" />
</body>
</html>

O código acima não pode exibir a imagem que eu estava referenciando. Eu queria saber o que eu estava fazendo de errado? e abaixo estão as permissões das pastas e arquivos.

-rwxrwxrwx 1 pipi pipi 100726 Oct 12 16:14 a.JPG
-rw-rw-rw- 1 pipi pipi   2475 Oct 12 18:41 class.php
drwxrwxr-x 2 pipi pipi   4096 Oct 13 15:14 image
-rw-rw-r-- 1 pipi pipi  11321 Sep 28 18:38 index.html
-rw-rw-r-- 1 pipi pipi    431 Oct 13 15:40 index.php
-rw-rw-rw- 1 pipi pipi    157 Oct 12 10:50 me.php
-rw-rw-rw- 1 pipi pipi    447 Oct 12 15:00 my.html
-rw-rw-rw- 1 pipi pipi   2475 Oct 12 18:55 new.html
-rw-rw-rw- 1 pipi pipi    316 Oct  8 10:41 test.php
    
por Ismail Yushaw 13.10.2015 / 19:01

1 resposta

3

É sensível a maiúsculas e minúsculas.

Se a sua imagem é chamada a.JPG , você precisa escrever exatamente isso no seu HTML

<img src="a.JPG" alt = "Al Sheik" width="300px" height="300px" />
    
por D-unit 13.10.2015 / 19:50