在尝试访问我们服务器上的某个目录时,我们收到以下403错误:
# /var/log/httpd/error_log
Directory index forbidden by Options directive: <path-to-directory>
这是用于目录的配置文件(包含在httpd.conf
中)。
# /etc/httpd/conf.d/<name-of-app>.conf
<VirtualHost *:80>
DocumentRoot "<path-to-directory>"
ServerName <server-name>
<Directory "<path-to-directory>">
Options +Indexes
Order allow,deny
Allow from all
Require all granted
</Directory>
</VirtualHost>
相关目录包含 index.html 文件。
任何帮助都会非常赞赏。
答案 0 :(得分:0)
我通过在目录中添加DirectoryIndex index.html
解决了这个问题。