wampserver2.5 发布后不能访问 you don't have permission to access

解决方法是:把apache的CONF文件夹下httpd.conf中的

< Directory "c:/wamp/www/">下面的

"Require local" ===> "Require all granted"
< /Directory >


再把


    AllowOverride none
    Require all denied
改为


    AllowOverride none
    Require all granted


最后

D:\wamp\alias下面的 phpmyadmin.conf


    Options Indexes FollowSymLinks MultiViews
    AllowOverride all
        Order Deny,Allow
    Deny from all
    Allow from 127.0.0.1

改为


    Options Indexes FollowSymLinks MultiViews
    AllowOverride all
        Order Allow,Deny
    Allow from all


你可能感兴趣的:(wampserver2.5 发布后不能访问 you don't have permission to access)