Error Forbidden WampServer

I installed wamp 64bit in my windows 8; after installation, my icon was orange but, I click the apache service form> install service \ and Apache works fine ( Green color changed )

But After opening localhost/in my browser, show me this error:

Forbidden 

You don't have permission to access / on this server. enter code here

but from 127.0.0.1 it works very well (from localhost not working)

my windows microsoft windows 8

+5
source share
2 answers

I delete this line from httpd.conf apache Reject from all

before my change:

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

after my changes:

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

My problem was solved this way

good time: D

+9
source

Found this question on Google.

Windows 8 Erfan Safarpoor; " 127.0.0.1" " 127.0.0.1:: 1", " 80" " 0.0.0.0:80". localhost PHPMyAdmin.: 3

+12

All Articles