我想要包含图像,这是在php根目录之外。
我试过相对路径,但没有显示图像
它给了我404找不到错误...
谁能帮我?
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Test video</title>
</head>
<body>
<!--<embed src="./1.mkv">???</embed>-->
<img src="../fabicon.ico">
<video width="320" height="240" controls>
<source src="./test/01.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</body>
</html>
源代码:/ Applications / MAMP / practice / CREATE_BOOKMARK
图像文件:/ Applications / MAMP / practice
答案 0 :(得分:0)
ico不是标准的图像格式。尝试转换为gif,png或jpg。如果您不知道或没有转换图像的软件,可以使用以下链接转换图像。
图像转换器:https://www.coolutils.com/online/image-converter/
希望这可以帮助你<3
答案 1 :(得分:0)
我不知道包含图片和视频的目录是如何组织的
不正确使用相对路径./和../可能是您找不到文件的原因。