Many times when we install a new PHP integrated environment, we always bring the database management software phpMyAdmin. If we are not careful and set the database password casually, or directly use its database default Password, others can easily access your database and modify your data, which is very unsafe.
Recommended learning: phpmyadmin tutorial
Let’s take a look at the method of prohibiting external network access to the phpMyAdmin software, which involves modifying the configuration file, which is very For practical tips, friends in need can refer to the following:
First, find phpmyadmin.conf in the phpmyadmin folder. In the file, you can see the following configuration (copy the code as follows):
<Directory "c:/wamp/apps/phpmyadmin3.4.10.1/"> Options Indexes FollowSymLinks MultiViews AllowOverride all Order Deny,Allow Deny from all Allow from 127.0.0.1 </Directory>
Find Deny from all, which means prohibiting all access, but allowing access from 127.0.0.1, then we delete Allow from 127.0.0.1, and change Deny from all to Allow from all, which means allowing access from all addresses. Save the modified configuration file, restart the server, and then you can access it using the domain name.
Forbidden
You don't have permission to access /phpMyAdmin/index.php on this server.
If this happens, please change apache Open httpd.conf and change the code (as follows):
<Directory /> Options FollowSymLinks AllowOverride None Order deny,allow Deny from all </Directory>
to:
<Directory /> Options FollowSymLinks AllowOverride None Order deny,allow Deny from None </Directory>
The above is the detailed content of How to set up the external network to be unable to access phpmyadmin. For more information, please follow other related articles on the PHP Chinese website!