Apache2,无法应用目录访问

Apache2,无法应用目录访问

我不知道如何应用拒绝访问目录。这是我的配置:

<VirtualHost x.x.x.x:80> 
DocumentRoot /var/www/html/wwwhtml 
ServerName mydomain.com 
ServerAdmin [email protected] 
ErrorLog /var/log/httpd/mydomain_error.log 
TransferLog /var/log/httpd/mydomain_access_log

Alias /test /var/www/html/wwwhtml/eventum  
<Directory /var/www/html/wwwhtml/eventum>
        Order deny,allow
        Deny from all
        #Allow from 192.168.0  
</Directory>

我拒绝访问 /test,但它不起作用,在我的另一台服务器上它运行正常 :/ 你知道是什么导致了这个问题吗?如何解决它?它不是整个配置,而是最重要的部分。也许文件重写会导致它?

提前致谢。

答案1

这看起来可能有点明显,但是您确实记得重新启动 Apache 对吗?

相关内容