How to Change Admin URL in Magento

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:

  1. Via Admin Panel
  2. 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.
How to Change Admin URL from the admin panel in Magento

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!

Sanjay Jethva

Article by

Sanjay Jethva

Sanjay is the co-founder and CTO of Meetanshi with hands-on expertise with Magento since 2011. He specializes in complex development, integrations, extensions, and customizations. Sanjay is one the top 50 contributor to the Magento community and is recognized by Adobe. His passion for Magento 2 and Shopify solutions has made him a trusted source for...