我可以使用 .htaccess 文件来保护我的计算机上的文件夹(使用 MAMP)免受网络上其他人的影响吗?

发布于 2024-12-09 06:20:31 字数 355 浏览 0 评论 0原文

我有一个简单的问题。

我在 Mac 上使用 MAMP 进行开发。一旦 MAMP 开启,我可以使用 localhost 或 127.0.0.1 访问它。但是,其他人可以使用我的 IP 地址在我的网络上访问它,我想禁止这样做。当我连接到 Internet 连接时,即使是我的网络之外的其他人也可以访问吗?

我已将 .htaccess 文件放入我的 MAMP 主目录中,据我在网络上的其他计算机上测试,该文件有效。但这有多安全?

谢谢。

这是我正在使用的:

订单拒绝,允许

所有人都否认

允许来自 127.0.0.1

I have a simple question.

I'm using MAMP for development on my Mac. Once MAMP is on I access it using either localhost or 127.0.0.1. However, others can access it on my network using my IP address, I want to forbid this. Would anyone else even outside of my network have access when I'm connected to an internet connection?

I've put a .htaccess file in my MAMP home directory, which works as far as I've tested on other computers on the network. But how secure is this?

Thanks.

Here is what I am using:

order deny,allow

deny from all

allow from 127.0.0.1

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

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

发布评论

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

评论(2

苍暮颜 2024-12-16 06:20:31

将以下行添加到您的 httpd.conf 并删除/注释掉任何其他 Listen 指令:

Listen 127.0.0.1:80

Add the following line to your httpd.conf and remove/comment out any other Listen directives:

Listen 127.0.0.1:80
柏林苍穹下 2024-12-16 06:20:31

Htaccess 是保护在线内容的最佳方法,但如果您确实想确定,并且您位于路由器后面,则可以简单地不转发端口 80,这样其他人将无法访问您的服务器。我认为在防火墙中禁用端口 80 也会有所帮助。

Htaccess is the best way to protect your online content, but if you really want to be sure, and you're behind a router, you could simply not forward port 80, so other people won't be able to access your server. Also disabling port 80 in your firewall would help I think.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文