apache禁止列目录:apache如何打开或者关闭列目录功能(转)
开启mod_autoindex模块
打开列目录功能:
Options +Indexes
关闭列目录功能:
Options -Indexes
or....
- <Directory D:/abc>
- Options Indexes FollowSymLinks
- AllowOverride All
- </Directory>
开启mod_autoindex模块
打开列目录功能:
Options +Indexes
关闭列目录功能:
Options -Indexes
or....