Apache指令禁止使用Options指令,即使使用index.html也是如此

时间:2014-06-12 08:58:18

标签: apache centos http-status-code-403

在尝试访问我们服务器上的某个目录时,我们收到以下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 文件。

任何帮助都会非常赞赏。

1 个答案:

答案 0 :(得分:0)

我通过在目录中添加DirectoryIndex index.html解决了这个问题。