Apache 目录浏览

禁止Apache显示目录索引,禁止Apache显示目录结构列表,禁止Apache浏览目录,这是网上提问比较多的,其实都是一个意思。下面说下禁止禁止Apache显示目录索引的常见的3种方法。
要实现禁止Apache显示目录索引,只需将 Option 中的 Indexes 去掉即可。

1)修改目录配置:/etc/apache2/sites-available/test.conf


    Options Indexes FollowSymLinks # 修改为: Options  FollowSymLinks
    AllowOverride None
    Order allow,deny
    Allow from all

只需要将上面代码中的 Indexes 去掉,就可以禁止 Apache 显示该目录结构。用户就不会看到该目录下的文件和子目录列表了。Indexes 的作用就是当该目录下没有 index.html 文件时,就显示目录结构,去掉 Indexes ,Apache 就不会显示该目录的列表了。

2)修改Apache配置文件[/etc/apache2/sites-available/test.conf]

搜索“Options Indexes FollowSymLinks”,修改为“Options -Indexes FollowSymLinks”即可。
在Options Indexes FollowSymLinks在Indexes前面加上 – 符号。备注:在Indexes前,加 + 代表允许目录浏览;加 – 代表禁止目录浏览。这样的话就属于整个Apache禁止目录浏览了。
如果是配置虚拟机,则如下:


   
        Options -Indexes FollowSymLinks # 修改为 -Indexes 即可
   
    ServerAdmin [email protected]
    DocumentRoot "../vhosts/blog.phpha.com"
    ServerName shopex:80
    ServerAlias blog.phpha.com
    ErrorLog logs/blog.phpha.com-error_log

3)通过.htaccess文件

可以在根目录新建或修改 .htaccess 文件中添加


 Options -Indexes

就可以禁止Apache显示目录索引。


4)Apache 虚拟机设置

/etc/apache2/sites-available/test.conf


        ServerAdmin webmaster@localhost    #管理员

        DocumentRoot /var/www        #网站根目录



        Options Indexes FollowSymLinks    #开启目录索引 
#       Options FollowSymLinks                #取消目录索引
        DirectoryIndex index.php index.html index.htm    #网页默认文件顺序
        AllowOverride ALL                    
        Order deny,allow
        Allow From All


        ErrorLog ${APACHE_LOG_DIR}/error.log        #错误日志
        CustomLog ${APACHE_LOG_DIR}/access.log combined    #访问日志


你可能感兴趣的:(Linux,学习,PHP,学习)