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.