如何在 xampp 中禁用 localhost/dashboard 目录列表
How to disable localhost/dashboard directory listing in xampp
每当我打开本地主机时,它都会重定向到此目录列表。以前它用于显示 index.html 页面“欢迎使用 XAMPP”,现在它显示目录列表。我该如何恢复?
无论出于何种原因,如果 xampp 停止识别仪表板 index.html
文件,只需编辑 xampp/htdocs/index.php
文件并编辑以下行并在行尾添加 /index.html
.
header('Location: '.$uri.'/dashboard/index.html');
这将确保加载 index.html 而不是显示目录列表。
每当我打开本地主机时,它都会重定向到此目录列表。以前它用于显示 index.html 页面“欢迎使用 XAMPP”,现在它显示目录列表。我该如何恢复?
无论出于何种原因,如果 xampp 停止识别仪表板 index.html
文件,只需编辑 xampp/htdocs/index.php
文件并编辑以下行并在行尾添加 /index.html
.
header('Location: '.$uri.'/dashboard/index.html');
这将确保加载 index.html 而不是显示目录列表。