文件夹访问限制 Apache

发布于 2024-11-05 18:07:48 字数 155 浏览 0 评论 0原文

我的 Apache Web 根目录中有以下目录结构。

我想将“源”文件夹限制为外部世界。目前可以通过其 url 访问它。

这怎么能做到呢?

索引页

I have the following directory structure on my Apache web root.

I would like to restrict the "source" folder to the outside world. Currently it can be accessed via its url.

How can this be done?

index page

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

幼儿园老大 2024-11-12 18:07:48

将 .htaccess 文件放入源文件夹中:

order allow deny
deny from all

Put a .htaccess file inside the source folder:

order allow deny
deny from all
内心旳酸楚 2024-11-12 18:07:48
chmod -R o-rwx source

这将删除外界对目录源及其所有内容的权限

chmod -R o-rwx source

this will remove permissions for the outside world to the directory source and all of its content

江心雾 2024-11-12 18:07:48

您还可以在每个目录中放置一个带有禁止访问通知的index.html 文件,因为index.html 是打开目录时要查看的默认默认文件。

You can also put an index.html file in each directory with a forbidden access notice as index.html is the default default file to be viewed when opening a directory.

不爱素颜 2024-11-12 18:07:48

您可以通过插入index.php并写入来使该目录看起来不存在

<?php
  header($_SERVER["SERVER_PROTOCOL"]." 404 Not Found");
?>

You could make it seem like the directory doesn't exist by inserting index.php and writing

<?php
  header($_SERVER["SERVER_PROTOCOL"]." 404 Not Found");
?>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文