Home  >  Article  >  Backend Development  >  403 error occurs when opening phpMyAdmin under PHP_PHP Tutorial

403 error occurs when opening phpMyAdmin under PHP_PHP Tutorial

WBOY
WBOYOriginal
2016-07-20 11:17:19995browse

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 directly paste the image as follows:

The code is as follows:

Options Indexes FollowSymLinks MultiViews

AllowOverride all

Order Deny,Allow

Deny from all

Allow from 127.0.0.1


Change it to

Allow from 127.0.0.1 => Allow from all means replacing 127.0.0.1 with all

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

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/372048.htmlTechArticleAfter installing wamp, open phpMyAdmin under it, which is the path http://localhost/phpmyadmin/. Look inside. The code is clear and the solution can be directly pasted as follows: The code is as follows: Direct...
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