0
在試圖訪問我們的服務器上的某個目錄,我們得到以下403錯誤:阿帕奇403目錄索引由Options指令禁止的,即使有index.html的
# /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文件。
任何幫助將大大讚賞。
服務器配置中是否有該目錄的其他定義?你是否啓用了'NameVirtualHost'? – arco444
事實證明,我需要添加DirectoryIndex index.html,並解決了這個問題。 – nicohvi