[quote][url]
nginx預設是不允許列出整個目錄的。如需此功能,
開啟nginx.conf檔案,在location server 或 http段中加入
autoindex on;
另外兩個引數最好也加上去:
autoindex_exact_size off;
預設為on,顯示出檔案的確切大小,單位是bytes。
改為off後,顯示出檔案的大概大小,單位是kb或者mb或者gb
autoindex_localtime on;
預設為off,顯示的檔案時間為gmt時間。
改為on後,顯示的檔案時間為檔案的伺服器時間
location /images
詳細參照:
例子
server
Nginx開啟目錄瀏覽功能 autoindex
2010年7月19日 wenhui nginx預設是不允許列出整個目錄的。如需此功能,開啟nginx.conf檔案,在location server 或 http段中加入 autoindex on 另外兩個引數最好也加上去 autoindex exact size off 預設為on,顯示出檔案的確...
Nginx開啟目錄瀏覽功能 autoindex
nginx預設是不允許列出整個目錄的。如需此功能,開啟nginx.conf檔案或你要啟用目錄瀏覽虛擬主機的配置檔案,在server或location 段裡新增上autoindex on 來啟用目錄流量,下面會分情況進行說明。另外nginx的目錄流量有兩個比較有用的引數,可以根據自己的需求新增 aut...
Nginx開啟目錄瀏覽功能 autoindex
nginx預設是不允許列出整個目錄的。如需此功能,開啟nginx.conf檔案,在location server 或 http段中加入 autoindex on 另外兩個引數最好也加上去 autoindex exact size off 預設為on,顯示出檔案的確切大小,單位是bytes。改為off...