Apache2相对路径不起作用

时间:2018-04-05 11:03:15

标签: apache server webserver apache2 relative-path

早上好, 我目前正在我的覆盆子pi上设置和apache2服务器。我的index.html文件位于目录/var/www/html中,当我转到IP地址时文件正常加载。但是,/var/www/html/img中的图像未加载。 html是这样的:<img alt="image1" src="img/picture1.png">。当我右键单击备用图像图标,然后在新选项卡中选择打开图像时,我得到:

You don't have permission to access /img/picture1.png on this server.
Server unable to read htaccess file, denying access to be safe

如何防止这种情况并让用户能够访问图像?

非常感谢,

1 个答案:

答案 0 :(得分:0)

尝试

chmod -R 755 /img/

这将为所有文件夹中的所有文件设置可读和可执行文件的权限,并且也可由所有者写入。

输出格式为

-rwxr-xr-x    1 root     root             0 Apr  5 12:38 picture1.jpg