Nginx,apache Open File Directory browsing function

Source: Internet
Author: User
Tags local time
We all know that under Apache can be configured to access a Web server path, automatically display its directory under the list of files, in fact, Nginx is not weaker than Apache, of course, it can also achieve this function, but also very easy and simple; mainly used in AutoIndex This parameter is opened with the following configuration:

Copy the Code code as follows:

Location/{
Root/data/www/file//Specify the actual directory absolute path;
AutoIndex on; Open Directory browsing function;
Autoindex_exact_size off; Close detailed file size statistics, let the file size display MB,GB units, default to B;
Autoindex_localtime on; Turn on show file modification date in server local time zone!
}


after the above configuration, using IE to access the root directory of the server, the/data/www/file directory will be displayed in the list of all files, Nginx directory browse:

In order to forget, finally the Apache under the configuration method is also recorded! Achieve the same effect as above!

Copy the Code code as follows:

Alias/"/data/www/file"
< Directory "/data/www/file" >
Options Indexes//Open Directory List index mode
Order Allow,deny
Indexoptions namewidth = Charset = UTF-8//Set file name display length, text character encoding
Allow from all

Original Address http://www.jb51.net/article/48239.htm

The above describes the Nginx,apache open file directory browsing features, including aspects of the content, I hope that the PHP tutorial interested in a friend helpful.

  • Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.