Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要确保外部用户或同一网络上的用户无法访问我的 Apache 服务器。我通过 wampserver 的安装程序安装了它,我对配置不是很熟悉。
我假设您的意思是您希望 Apache 仅在 localhost/loopback 上侦听。您可以在 Windows 防火墙中设置一个规则来执行此操作(即为 80、443 以及 Apache 正在侦听的任何其他端口设置端口阻止规则),或者您可以在 Apache 配置中定义一个 Listen 指令,例如 Listen 127.0.0.1:80。