码迷,mamicode.com
首页 > Web开发 > 详细

Nginx 和 Apache 开启目录浏览功能

时间:2016-03-12 14:44:10      阅读:264      评论:0      收藏:0      [点我收藏+]

标签:

1.Nginx

在相应项目的 Server 段中的 location 段中,添加 autoindex on。例如:

server
    {
        listen 80;
        server_name www.dee.practise.com;
        location /{
                root html/practise;
                #index index.php;
                autoindex on;
        }
        location ~ \.php$ {
                #root html;
                root html/practise;
                #fastcgi_pass 127.0.0.1:9000;
                fastcgi_pass unix:/tmp/php-cgi.sock;
                fastcgi_index index.php;
                fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
                include fastcgi_params;
        }
        access_log /home/wwwlogs/practise/access.log access;
    }

 

2.Apache

在 http.conf 中加入如下代码(以 d:/wamp/www/practise 目录为例):

<Directory "d:/wamp/www/practise">
    #开启目录列表索引模式
    Options Indexes
    Order allow,deny
    IndexOptions NameWidth=25 Charset=UTF-8 
    Allow from all
</Directory>

 或

<Directory />"d:/wamp/www/practise"
    #开启目录列表索引模式
    Options Indexes
    Order allow,deny
    IndexOptions NameWidth=25 Charset=UTF-8 
    Allow from all
</Directory>

 

参考:

启用apache目录浏览功能

 

Nginx 和 Apache 开启目录浏览功能

标签:

原文地址:http://www.cnblogs.com/dee0912/p/5268599.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!