WAMP 和 XAMPP 处理虚拟主机的方式有何区别?

发布于 2024-09-11 09:21:53 字数 279 浏览 6 评论 0原文

我正在从 WAMP 切换到 XAMPP,而 XAMPP 损坏了我的虚拟主机。它不会允许访问它们。

“您无权访问 请求的目录。有 要么没有索引文档,要么 目录受读保护。”

Apache 错误日志显示:

“[错误] [客户端 127.0.0.1] 客户端 被服务器配置拒绝”

为了使虚拟主机正常工作,WAMP 设置了哪些 XAMPP 没有设置的内容?

I'm switching from WAMP to XAMPP and XAMPP has broken my vhosts. It won't allow access to them.

"You don't have permission to access
the requested directory. There is
either no index document or the
directory is read-protected."

The Apache error log says:

"[error] [client 127.0.0.1] client
denied by server configuration"

What does WAMP set that XAMPP doesn't in order to make the vhosts work?

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

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

发布评论

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

评论(1

惟欲睡 2024-09-18 09:21:53

一些可能的原因:

  • 您缺少允许访问该文件树的 容器:

    <目录“C:/Foo/Bar/”>
        订单允许、拒绝
        允许所有
    
    
  • 您正在使用 PHP,但 index.php未定义为目录索引:

    目录索引index.php
    
  • 目录受读保护

Some possible reasons:

  • You are missing a <Directory> container to allow access to that file tree:

    <Directory "C:/Foo/Bar/">
        Order allow,deny
        Allow from all
    </Directory>
    
  • You are using PHP but index.php is not defined as directory index:

    DirectoryIndex index.php
    
  • The directory is read-protected

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