错误禁止WampServer

Erf*_*oor 5 wampserver

我在Windows 8中使用了64位的wamp; 安装后我的图标是橙色但是,我点击表单服务apache>安装服务\和Apache正常运行(将颜色更改为绿色)

但在localhost/浏览器中打开后,显示此错误:

Forbidden 

You don't have permission to access / on this server. enter code here
Run Code Online (Sandbox Code Playgroud)

但是从127.0.0.1开始运行非常好 (from localhost not working)

我的窗户是 microsoft windows 8

r10*_*109 12

在Google上发现了这个问题.

对于Windows 8,以及Erfan Safarpoor的响应; 确保"允许从127.0.0.1"到"允许从127.0.0.1 :: 1"以及将"Listen 80"更改为"Listen 0.0.0.0:80" - 这将解决在localhost上获取Forbidden的问题phpMyAdmin的.:3


Erf*_*oor 9

我从httpd.conf apache Deny中删除了这一行

在我改变之前:

<Directory "c:/wamp/apps/phpmyadmin3.4.5/">
    Options Indexes FollowSymLinks MultiViews
    AllowOverride all
    Order Deny,Allow
    Deny from all
    Allow from all
</Directory>
Run Code Online (Sandbox Code Playgroud)

在我改变之后:

<Directory "c:/wamp/apps/phpmyadmin3.4.5/">
    Options Indexes FollowSymLinks MultiViews
    AllowOverride all
    Order Deny,Allow
    Allow from all
</Directory>
Run Code Online (Sandbox Code Playgroud)

我的问题就这样解决了

美好时光:D