403 on localhost: Forbidden You don't have permission to access / on this server
I'm using Wamp, and Im delevoping an php web application. I'm not sure what exactly I changed, but for some reason I'm getting a 403 on my local开发者_如何学Chost now. Any Suggestions?
Hard to know, but here are so many possible solutions http://www.cyberciti.biz/faq/apache-403-forbidden-error-and-solution/
Goto C:/wamp/alias/ open phpmyadmin.conf with a text editor Find something like this (mentioned below) and replace it with one given here
<Directory "c:/wamp/apps/phpmyadmin3.4.5/">
Options Indexes FollowSymLinks MultiViews
AllowOverride all
Order Deny,Allow
Allow from all
</Directory>
精彩评论