All localhost pages via WAMP blocked?

后端 未结 8 2451
北恋
北恋 2020-12-15 08:15

I\'ve been trying to fix a weird 403 Forbidden error I get when I try to go to one of my pages via WAMP on the localhost.

After adding a rule to open up port 80 via

8条回答
  •  既然无缘
    2020-12-15 09:02

    Marco Tamanti solution worked for me:

    Allow from 127.0.0.1
    Allow from ::1:
    

    so I have:

    
    Options Indexes FollowSymLinks
    AllowOverride all
    Order Deny,Allow
    Deny from all
    Allow from 127.0.0.1
    Allow from ::1:
    
    

提交回复
热议问题