为什么我无法拒绝在 ubuntu 14.04 中的 httpd 中访问 /var/www/html/index.html

为什么我无法拒绝在 ubuntu 14.04 中的 httpd 中访问 /var/www/html/index.html

这是我的全局设置

<Directory /var/www/html>
        Require all denied
</Directory>

但是如果我将 index.html 的文件名更改为 index1.html,那么它就可以工作了。

虚拟主机配置为默认:

<VirtualHost *:80>


        ServerAdmin webmaster@localhost
        DocumentRoot /var/www/html

        ErrorLog ${APACHE_LOG_DIR}/error.log
        CustomLog ${APACHE_LOG_DIR}/access.log combined


</VirtualHost>

相关内容