Home  >  Article  >  Database  >  Solution to 403 error reported when phpmyadmin cannot be opened

Solution to 403 error reported when phpmyadmin cannot be opened

尚
Original
2019-12-09 11:18:122702browse

Solution to 403 error reported when phpmyadmin cannot be opened

After installing wamp, open phpMyAdmin under it, which is the path http://localhost/phpmyadmin/

appears

Solution to 403 error reported when phpmyadmin cannot be opened

Look at the code inside and you will understand

The solution is to paste the image directly as follows:

Solution to 403 error reported when phpmyadmin cannot be opened

<Directory "c:/wamp/apps/phpmyadmin3.5.1/">
    Options Indexes FollowSymLinks MultiViews

    AllowOverride all

        Order Deny,Allow

         Deny from all

         Allow from 127.0.0.1

</Directory>

Change it to

Allow from 127.0.0.1 => Allow from all That is to say, replace 127.0.0.1 with all

OK, everything is done (if not, restart wamp)

More phpmyadmin related technical articles, Please visit the phpmyadmin tutorial column!

The above is the detailed content of Solution to 403 error reported when phpmyadmin cannot be opened. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn