用PHP写的网站,如何防止用户访问目录?
发布网友
发布时间:2022-04-06 02:18
我来回答
共4个回答
热心网友
时间:2022-04-06 03:47
最简单的办法是在图片文件夹里面建立一个空的索引文件,例如:index.html
APACHE服务器这样做,搜索你的httpd.conf文件,删除下面的行:
LoadMole autoindex_mole moles/mod_autoindex.so
热心网友
时间:2022-04-06 05:05
新建一个文件index.html上面写上
<script language="javascript">
history.back();
</script>
这样它就会返回上一页了
热心网友
时间:2022-04-06 06:40
修改下 apache 的配置文件
<Directory "F:\hostdoc">
Options Indexes FollowSymLinks
AllowOverride All
Order Allow,Deny
Allow from all
</Directory>
将 Options 中的 Indexes 去掉
热心网友
时间:2022-04-06 08:31
WEB服务器是什么?如果是IIS的话,只需在IIS里设置一下就行了。