xampp访问phpmyadmin报错


xampp安装完之后,访问phpmyadmin报如图所示错误php

远程访问phpmyadmin的时候出现错误ide

New XAMPP security concept:
Access to the requested object is only available from the local network.
This setting can be configured in the file "httpd-xampp.conf".

找到ui

<Directory "/xampp/phpmyadmin">
    AllowOverride AuthConfig
    Require all granted
</Directory>

修改成code

<Directory "/xampp/phpmyadmin">
    AllowOverride AuthConfig
    Allow from all    
    Require all granted
</Directory>
相关文章
相关标签/搜索