我可以使用 .htaccess 文件来保护我的计算机上的文件夹(使用 MAMP)免受网络上其他人的影响吗?
我有一个简单的问题。
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将以下行添加到您的 httpd.conf 并删除/注释掉任何其他
Listen
指令:Add the following line to your httpd.conf and remove/comment out any other
Listen
directives: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.