0

简而言之,我不希望用户访问文件夹或其中的数据或文件。

我搜索了一下,我想出了deny from all,但是当我把它放在ftp上时它不起作用;但在本地主机上它的工作。

我在上传文件夹中编写了以下给定代码:

# .htaccess mod_rewrite
RewriteEngine On

deny from all
4

1 回答 1

0

解决:

只需将 index.php 文件放入包含代码的文件夹中:

<?php
header("Location: ../");
?>

它将通过用户退出该文件夹。

于 2017-05-31T06:11:52.037 回答