Apache 2.4 - 禁止(WAMP)

时间:2015-02-11 00:12:07

标签: apache wamp

无法让Apache 2.4正常工作。

Localhost它很棒。我可以看到我的网站没问题。但是,如果我有另一台计算机尝试与服务器通信,我会收到以下错误:

禁 您无权在此服务器上访问/测试。

我做了一些研究,并在http.conf文件中尝试了很多选项。

我知道这是不安全的,但我试图让它工作我可以在我建立某种连接后提高安全性。

我的配置文件目录如下所示:

<Directory />
    Require all granted
</Directory>

DocumentRoot "c:/wamp64/www"
<Directory "c:/wamp64/www/">
    Require all granted
</Directory>

非常感谢任何帮助。先谢谢!

2 个答案:

答案 0 :(得分:0)

最后让它工作这是我的配置看起来像,希望这适合你。

<Directory />
    AllowOverride none
    Require all granted
</Directory>

DocumentRoot "c:/wamp64/www"
<Directory "c:/wamp64/www/">
    Options Indexes FollowSymLinks
    AllowOverride All
    Require all granted
</Directory>

<Directory "c:/wamp64/www/test">
    Require all granted
</Directory>

答案 1 :(得分:0)

您还需要添加该目录。