If you want to change the the Admin Panel default URL from http://www.domain.com/admin/ to your own custom url http://www.domain.com/jsbanga/ to avoid any unwanted snooping around your web store. then follow these steps:
1. Go to app/code/core/Mage/Adminhtml/etc/ directory and open config.xml in your favorite editor.
...
<admin>
<routers>
<adminhtml>
<use>admin</use>
<args>
<module>Mage_Adminhtml</module>
<frontName>admin</frontName>
</args>
</adminhtml>
</routers>
</admin>
...
2. Before edit this file please make sure that you disable the system’s cache,other wise you might get locked out of your admin panel.
3. After modifying name from ‘admin’ to ‘jsbanga’ code should be like this :
...
<admin>
<routers>
<adminhtml>
<use>admin</use>
<args>
<module>Mage_Adminhtml</module>
<frontName>jsbanga</frontName>
</args>
</adminhtml>
</routers>
</admin>
...
4. Save your file. Now your admin panel open by your new custom URL : http://www.domain.com/jsbanga/
5. Done
Comments
Hi there,
I just tried this solution but its not working for me. After changing the frontName value and point my magento to that url I get 404 error. And still admin is working for me though the frontName value is changed.