在httpd.conf 和 httpd-vhosts.conf中的 <Directory ????> </Directory>如下设置,重启apache即可:
<
Directory
"设置你的路径">
Options +Indexes +Includes +FollowSymLinks +MultiViews
AllowOverride All
#Require local
IndexOptions Charset=UTF-8 #编码格式,防止中文乱码
IndexOptions NameWidth=* #根据文件名自动调整列宽
Allow from all
</
Directory
>
官方文档: http://httpd.apache.org/docs/2.4/mod/mod_autoindex.html