首页 > 代码库 > apache2 限制访问空文件展示目录

apache2 限制访问空文件展示目录

<Directory /var/www/>
    Options Indexes FollowSymLinks
    AllowOverride None
    Require all granted
</Directory>



/etc/apache2/apache2.conf修改上述为:


<Directory /var/www/>
    Options  FollowSymLinks
    AllowOverride None
    Require all granted
</Directory>

本文出自 “枷罗博客” 博客,请务必保留此出处http://jhomephper.blog.51cto.com/8558055/1882916

apache2 限制访问空文件展示目录