How to rename phpmyadmin?

To access the database, I use localhost / phpmyadmin now, I want to rename phpmyadmin. Those. I want to access the database by typing localhost / phpmyadmin_renamed. How can I do that?

+4
source share
1 answer

Try the following:

In the httpd.conf file, find <Ifmodule alias_module> , which should contain something like Alias /phpmyadmin "${path}/phpmyadmin"

Now change it to:

Alias /phpmyadmin_renamed "${path}/phpmyadmin"

Note: "$(path)/phpmyadmin" can be anything, depending on your server.

Alternative approach:

Or you can just download phpmyadmin and extract it in phpmyadmin_renamed.

+3
source

Source: https://habr.com/ru/post/1481869/


All Articles