Xampp问题之一:XAMPP:Access to the requested object is only available from the local network.
You don't have permission to access /phpmyadmin/ on this server
解决方式:1,查找http-xampp.conf文件 。
2, 在配置文件的最后面添加如下代码:
<LocationMatch "^/(?i:(?:xampp|security|licenses|phpmyadmin|webalizer|server-status|server-info))">
Order deny,allow
Allow from all
Require all granted
ErrorDocument 403 /error/XAMPP_FORBIDDEN.html.var
</LocationMatch>
3,重启服务器。