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>
相關文章
相關標籤/搜索