Apache设置目录禁止访问
程序员文章站
2024-02-06 20:34:10
默认apache在当前目录下没有index.html入口就会显示目录。让目录暴露在外面是非常危险的事,如下操作禁止apache显示目录:
进入apache的配置文件 ht...
默认apache在当前目录下没有index.html入口就会显示目录。让目录暴露在外面是非常危险的事,如下操作禁止apache显示目录:
进入apache的配置文件 httpd.conf 找到:
options indexes followsymlinks
修改为:
options followsymlinks
其实就是将indexes去掉,indexes表示若当前目录没有index.html就会显示目录结构。
非常的简单吧!
上一篇: 卸载windows补丁