我所有的WAMP
服务器服务都在运行,但是当我打开它时http://localhost/
,它给了我这个错误
“HTTP 错误 403.14 - 禁止 Web 服务器配置为不列出此目录的内容。”
我所有的WAMP
服务器服务都在运行,但是当我打开它时http://localhost/
,它给了我这个错误
“HTTP 错误 403.14 - 禁止 Web 服务器配置为不列出此目录的内容。”
您收到此错误是因为列表目录内容被禁用。可以在 apache 配置文件中找到类似的内容httpd.conf
:
Options -Indexes
您看到这种情况的原因可能是由于以下两个原因之一:
检查您的 apache 配置是否有以下内容:
DirectoryIndex index.html index.php
您的目录索引应列出您要用作索引页的文件的名称。交叉引用这两者,你应该能够让它工作。
最后,确保httpd -t
在进行更改后始终运行以测试您的 apache 配置,然后再重新启动它。
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.