1.关于没有默认索引文件(index.php或者index.html)时,列出目录:需要开启模块
LoadModule autoindex_module modules/mod_autoindex.so
且配合httpd-vhosts.conf的设置:
<Directory "E:/www/demo"> Options Indexes FollowSymLinks # for rewrite AllowOverride Indexes FileInfo </Directory>
Indexes 即: 如果输入的网址对应服务器上的一个文件目录,而此目录中又没有DirectoryIndex指令(例如:DirectoryIndex index.html index.php),那么服务器会返回由mod_autoindex模块生成的一个格式化后的目录列表
2.关于权限变为:Require all granted
时间: 2024-10-04 17:49:06