Hello. Dedicated server UBUNTU Page for logging into php my admin is
http: // server_IP / phpmyadmin
How to change it, let's say on:
http: // domain_or_ip_server_server / secret_php_my_admin
Hello. Dedicated server UBUNTU Page for logging into php my admin is
http: // server_IP / phpmyadmin
How to change it, let's say on:
http: // domain_or_ip_server_server / secret_php_my_admin
If you have an Apache web server installed, then you need to fix the phpMyAdmin configs as follows. Find the line in the /etc/phpmyadmin/apache.conf file (by default, it is at the top)
Alias /phpmyadmin /usr/share/phpmyadmin And replace it with
Alias /secret_php_my_admin /usr/share/phpmyadmin Then restart the web server with the command
sudo service apache2 restart /etc/apache2/conf-enabled /etc/phpmyadmin/apache.conf link to /etc/phpmyadmin/apache.conf . I checked on Ubuntu Server 14.04.2 LTS. It worked for me. All configs were default. - mymediaSource: https://ru.stackoverflow.com/questions/430269/
All Articles