Reputation: 520
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?
Upvotes: 11
Views: 66095
Reputation: 371
/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.
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.
The source for this solution was found here, finding your magento admin login.
Upvotes: 13
Reputation: 26016
Try like this: http://localhost.host/amuni/index.php/admin
Note that "index.php" is added before "admin".
Upvotes: 24