Search this site

Tuesday, February 4, 2014

Change phpmyadmin's URL in XAMPP windows

I just setting my phpmyadmin in windows
I installed it using XAMPP

And I want to change the phpmyadmin's URL
default: 127.0.0.1/phpmyadmin and I want to change it to 127.0.0.1/myownlink

It's not hard
just open this file
C:\xampp\apache\conf\extra\httpd-xampp.conf
 In line 99
Alias /phpmyadmin "C:/xampp/phpMyAdmin/"
Change it to
 Alias /myownlink "C:/xampp/phpMyAdmin/"

And don't forget to restart your apache in XAMPP
Done

10 comments:

  1. Thanks a lot, works great!

    ReplyDelete
  2. Many Thanks. I was looking for that for a day!

    ReplyDelete
    Replies
    1. you welcome
      yeah I remembered how happy I am when I found it

      Delete
  3. Thanks for this tips, how to do this also in lampp?

    ReplyDelete
    Replies
    1. should be the same
      if you are in linux, the configuration you need to change is /etc/phpmyadmin/apache.conf
      you can find the setting there

      Delete