在 WAMP 中允许 0.0.0.0 访问

发布于 2024-12-11 03:05:23 字数 75 浏览 0 评论 0 原文

一切都设置正确,但我收到“403.....禁止您无权访问此服务器上的/”。当我访问我的 IP 地址或 TLD 时出现错误。有什么帮助吗?

Everything is setup correctly, but I'm getting "403..... Forbidden You don't have permission to access / on this server." error's when I access my IP address or my TLD. Any help?

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

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

发布评论

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

评论(2

凉世弥音 2024-12-18 03:05:23

在您的 VirtualHost 中,确保您在目录块中设置了访问权限...

order allow,deny
allow from all

检查您的 DocumentRoot 文件夹中是否有 .htaccess 文件,它可以覆盖上述文件。

除此之外,当您的 VirtualHost 不包含正确的 ServerName 或 ServerAlias 并且请求最终落入默认的 httpd.conf 设置时,您也可能会收到此错误。

还可以考虑尝试另一个 WAMP 包。

xampp(免费)-
WampDeveloper Pro(商业)-
WampServer(免费)

In your VirtualHost, make sure that you have access permissions set in the Directory block...

order allow,deny
allow from all

Check your DocumentRoot folder for an .htaccess file, it can override the above.

Aside from that, you can also get this error when your VirtualHost does not contain the proper ServerName or ServerAlias and the request ends up falling into the default httpd.conf setup.

Also consider trying out another WAMP package.

xampp (free) -
WampDeveloper Pro (commercial) -
WampServer (free)

橘寄 2024-12-18 03:05:23

您可能从 ::1 发出请求,即 IP6 127.0.0.1

因此,只需更新 部分,位于 C:\wamp\bin\apache\ApacheX.XX\conf\httpd.conf 部分:

Order Deny, Allow
Deny from all
Allow from 127.0.0.1
Allow from ::1

记住也在 C:\wamp\alias 的所有 conf 文件中执行此操作

,这样可以保护 apache 的安全。

You are probably making requests from ::1, which is IP6 127.0.0.1.

So just update your <Directory "c:/wamp/www/"> section at C:\wamp\bin\apache\ApacheX.X.X\conf\httpd.conf sections to:

Order Deny, Allow
Deny from all
Allow from 127.0.0.1
Allow from ::1

Remember to also do it in all conf files of C:\wamp\alias

This way you preserve the apache security.

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