How do I change phpMyAdmin access URL?

8,140

For ubuntu (i used ubuntu 12.04), the default phpmyadmin apache configuration can be found at /etc/phpmyadmin/apache.conf

You can open it by type sudo nano /etc/phpmyadmin/apache.conf and change the third

Alias /yournewalias /usr/share/phpmyadmin

Do not forget to restart apache service,

sudo service apache2 restart
Share:
8,140

Related videos on Youtube

Hizqeel
Author by

Hizqeel

Updated on September 18, 2022

Comments

  • Hizqeel
    Hizqeel over 1 year

    Could someone please tell me how to change phpMyAdmin's access URL, I would like it only to be accessible from a specific URL: database.example.com. example.com would be replaced to my actual domain.

    I am running Ubuntu Server 14.04 LTS with LAMP and phpMyAdmin installed. I installed phpMyAdmin through command line using:

    apt-get install phpmyadmin
    

    Many Thanks,
    Sam

  • Thomas Ward
    Thomas Ward almost 8 years
    Whilst this may theoretically answer the question, it would be preferable to include the essential parts of the answer here, and provide the link for reference.