Solution to the 403 error in phpmyadmin: First find the Alias directory folder of [http://localhost/phpmyadmin/] and open the Apache folder; then replace [127.0.0.1] with all .
Solution to 403 error in phpmyadmin:
Find the Alias directory of http://localhost/phpmyadmin/ folder, open the Apache folder;
In the following code:
<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>
find
Allow from 127.0.0.1
and change it to:
Allow from all
That is, replace 127.0.0.1
with all
Related tutorial recommendations:
The above is the detailed content of What should I do if a 403 error occurs in phpmyadmin?. For more information, please follow other related articles on the PHP Chinese website!