xampp进入不了phpmyadmin "Access to the requested directory is only available from the local network"

转载:

原文地址:http://bbs.chinaunix.net/thread-3760004-1-1.html

修改中httpd-xampp.conf 的代码。

在httpd-xampp.conf 中找到<Directory "/opt/lampp/phpmyadmin">

加以下这句代码到<Directory>:
Require all granted

修改后,<Directory>的代码应该如下这样:
<Directory "/opt/lampp/phpmyadmin">
    AllowOverride AuthConfig Limit
    Order allow,deny
    Allow from all
    Require all granted
</Directory>

保存,重新运行,即可进入。
/opt/lampp/lampp restart

 

问题原地址:https://community.apachefriends.org/f/viewtopic.php?f=17&t=50902&p=196185#p196185

posted @ 2017-06-22 13:48  远洪  阅读(2742)  评论(1编辑  收藏  举报