After installing wamp, open phpMyAdmin under it, which is the path http://localhost/phpmyadmin/
appears
Look at the code inside and you will understand
The solution is to paste the image directly as follows:
<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!