zoukankan      html  css  js  c++  java
  • Nginx 和 Apache 开启目录浏览功能

    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目录浏览功能

  • 相关阅读:
    分糖果
    数字游戏
    错误票据
    包子凑数
    带分数
    翻硬币
    核桃的数量
    快速幂
    公倍数与素数筛选
    mysql 查询当天当周当月的数据
  • 原文地址:https://www.cnblogs.com/dee0912/p/5268599.html
Copyright © 2011-2022 走看看