在 WAMP 中允许 0.0.0.0 访问
一切都设置正确,但我收到“403.....禁止您无权访问此服务器上的/”。当我访问我的 IP 地址或 TLD 时出现错误。有什么帮助吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
一切都设置正确,但我收到“403.....禁止您无权访问此服务器上的/”。当我访问我的 IP 地址或 TLD 时出现错误。有什么帮助吗?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
在您的 VirtualHost 中,确保您在目录块中设置了访问权限...
检查您的 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...
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)
您可能从
::1
发出请求,即 IP6127.0.0.1
。因此,只需更新
部分,位于C:\wamp\bin\apache\ApacheX.XX\conf\httpd.conf 部分:
记住也在
C:\wamp\alias
的所有 conf 文件中执行此操作,这样可以保护 apache 的安全。
You are probably making requests from
::1
, which is IP6127.0.0.1
.So just update your
<Directory "c:/wamp/www/">
section atC:\wamp\bin\apache\ApacheX.X.X\conf\httpd.conf
sections to:Remember to also do it in all conf files of
C:\wamp\alias
This way you preserve the apache security.