Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the correct URL for MAGENTO admin

Tags:

php

magento

I don't know why my magento is not working any more

when I hit "http://localhost.host/amuni/admin" it says

Oops! This link appears to be broken. but frontend working fine please tell me what should I do.

What is the correct URL?

like image 769
Noor Khan Avatar asked Apr 28 '11 11:04

Noor Khan


2 Answers

Try like this: http://localhost.host/amuni/index.php/admin

Note that "index.php" is added before "admin".

like image 132
Mukesh Chapagain Avatar answered Sep 29 '22 10:09

Mukesh Chapagain


/index.php/admin is one solution, but there are others

Although the above URL has worked for the original poster, it's not going to work for everybody. The Magento Admin Url is based on a custom value that is set during the installation. The url can also be changed at any time.

Here's how to find out what your admin url is:

If the above solution does not work for you, then you'll need to access your local.xml file which is located in the /app/etc directory. Once you've opened that file, scroll to the bottom, around line 80 I think. You should see a tag called < frontEnd >. It's inside of this tag that your custom Magento Admin Url is located.

enter image description here

The source for this solution was found here, finding your magento admin login.

like image 28
Marketing Consultant Avatar answered Sep 29 '22 10:09

Marketing Consultant