2

我所有的WAMP服务器服务都在运行,但是当我打开它时http://localhost/,它给了我这个错误

“HTTP 错误 403.14 - 禁止 Web 服务器配置为不列出此目录的内容。”

4

2 回答 2

1

您收到此错误是因为列表目录内容被禁用。可以在 apache 配置文件中找到类似的内容httpd.conf

Options -Indexes

您看到这种情况的原因可能是由于以下两个原因之一:

  1. 您没有索引页面(通常是 index.php 或 index.html)
  2. 您有一个索引页面,但您的设置不正确

检查您的 apache 配置是否有以下内容:

DirectoryIndex index.html index.php

您的目录索引应列出您要用作索引页的文件的名称。交叉引用这两者,你应该能够让它工作。

最后,确保httpd -t在进行更改后始终运行以测试您的 apache 配置,然后再重新启动它。

于 2012-06-07T20:52:39.740 回答
0

Change the content of c:\wamp\alias\phpmyadmin.conf file to the following.

<Directory "c:/wamp/apps/phpmyadmin3.4.5/">
    Options Indexes FollowSymLinks MultiViews
    AllowOverride all
        Order Deny,Allow
        Allow from all
</Directory>

And Restart your Apache server after making these changes.

于 2013-02-08T19:51:08.623 回答