Given how frequent hacking and data breaches take place in E-commerce websites, it is a challenge for Magento store admin to secure the admin panel.
Previously, I had given the methods to change admin URL in Magento 2 stores.
However, it is a much-needed process for Magento stores comparatively. Hence, the methods to change admin URL in Magento!
The default Magento admin URL is quite predictable and prone to hackers’ attacks. Hence, securing your admin panel is utmost important.
Methods to Change Admin URL in Magento:
- Via Admin Panel
- Manually by editing local.xml file
Implementing each method in detail,
1. Change Magento Admin URL via Admin panel
- Log in to Admin Panel
- Navigate to System > Configuration > Advanced > Admin
- Expand Admin Base URL
- Set “Yes” to Use Custom Admin Path
- Enter your custom path in Custom Admin Path
- Save your configuration.

2. Change Magento Admin URL by editing local.xml file
- Open local.xml via app/code directory from the root directory of your store.
- Replace the code:
<admin>
<routers>
<adminhtml>
<args>
<frontName><![CDATA[admin]]></frontName>
</args>
</adminhtml>
</routers>
</admin>
with:
<admin>
<routers>
<adminhtml>
<args>
<frontName><![CDATA[secure-admin]]></frontName>
</args>
</adminhtml>
</routers>
</admin>
where, /secure-admin is my custom URL path. Enter the value of your custom URL path here.
After implementing any of the above methods, clear cache.
Change admin URL in Magento with any of the above methods to secure your store’s backend from the hackers.
I’d be very grateful if you help share this helpful post on social media to fellow developers!
Thanks!