我没有在浏览器中显示图像。我尽我所能但没有成功。请帮忙。
这是我的目录结构: - >
MyProject/
images/
->Logo.png
->background.png
js/
styles/
->style.css
index.php
我正在调用这样的图片: - >
<section id="pageContent">
<div class="container">
<div class="logo">
<img src="images/Logo.png" alt="Logo" width="100" height="100">
</div>
</div>
</section>
我使用LAMP作为我的服务器,目录结构位于/var/www/html/MyProject
我在使用Firebug的FireFox中尝试过并遇到了这个错误: - &gt;
Failed to load the given URL
如果我在浏览器中直接将路径写为localhost/MyProject/images/Logo.png
,我会收到You don't have permission to access /MyProject/images/Logo.png on this server.
错误。
我出错了,请指出错误。
我正在使用Ubuntu 14.04 LTS 64位计算机。