Apache2 所有没有index.html或php的目录都是被禁止的

Apache2 所有没有index.html或php的目录都是被禁止的

所有没有 index.html 或 .php 的目录都被禁止。我无法通过服务器访问它(例如,我无法在文件夹 css 中使用 css)。我的 apache2.conf

<Directory />
        #Options Indexes FollowSymLinks
        Options Indexes FollowSymLinks Includes ExecCGI
        AllowOverride All
        Require all granted
</Directory>

<Directory /usr/share>
        AllowOverride None
        Require all granted
</Directory>

<Directory /var/www/>
        Options Indexes FollowSymLinks
        AllowOverride All
        Require all granted
</Directory>

答案1

我找到了解决方法。在目录 var/www 上,我将所有文件的所有者更改为 my-username:www-data。之后,我将所有权限添加到组。工作正常。

相关内容