0
点赞
收藏
分享

微信扫一扫

XAMPP笔记:网页返回了文件目录列表


问题描述

网站地址指向了一个目录,网站将文件列表返回了,如下图

XAMPP笔记:网页返回了文件目录列表_访问返回文件列表

原因

Indexes
If a URL which maps to a directory is requested and there is no DirectoryIndex (e.g., index.html) in that directory, then mod_autoindex will return a formatted listing of the directory.

Options中配置了Indexes, 如果配置了此项,则访问时,如果当前目录中没有index.html或index.php之类的文件,就会将文件及文件夹列表返回。

参看:​​https://httpd.apache.org/docs/2.4/mod/core.html#options​​

解决方案

修改httpd.conf文件,去除Options中的Indexes,如下图

XAMPP笔记:网页返回了文件目录列表_html_02

参看

​​https://httpd.apache.org/docs/2.4/mod/core.html#options​​


举报

相关推荐

0 条评论