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

Solution to 403 error reported when phpmyadmin cannot be opened

Release: 2019-12-09 11:18:12
Original
2852 people have browsed it

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>
Copy after login

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!

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template