X

Important Notice:

It has come to our attention that some individuals, who are not affiliated with eGlobe IT Solutions, have been reaching out to job seekers falsely claiming to represent our company. These scammers are offering Work from Home Part-Time job opportunities under the guise of eGlobe IT Solutions and we have already reported to the concerned authorities under law. If you have been contacted by someone claiming to be from eGlobe IT Solutions via WhatsApp/Instagram/Facebook/SMS and you suspect that it might be a scam, we urge you to exercise caution. Do not share any personal information or make any financial transactions. Instead, pleasefollow these steps:

1. Contact Us:

If you have doubts or concerns, please reach out to our HR department directly at hr@eglobeits.com to confirm the authenticity of the communication.

2. Do Not Share Personal or Financial Information:

Under no circumstances should you share sensitive personal or financial information with anyone claiming to be from eGlobe IT Solutions without proper verification.

3. Report the Scam:

If you believe you have been targeted by a scam, please report it to your local law enforcement authorities and forward any suspicious emails or messages to us at hr@eglobeits.com so that we can take appropriate action.

Your safety and security are of paramount importance to us, and we take these matters very seriously. eGlobe IT Solutions is committed to maintaining the highest ethical standards in our recruitment processes.

Changing Your Magento Admin URL for Improved Security

Posted on: 10 Feb 2020 by Admin

In this tutorial we will help you on how to change Magento 2 admin URL
Read carefully and try these steps from your end
Are you still using admin as the administrator path for Magento?
Then it’s time to change to a unique, custom URL from default ‘admin’ URL.
This can help to reduce the exposure of Magento sites from scripts of hackers.
Changing the default admin path is simple for anyone who knows to edit the text in XML files.

Let’s learn on how to change Magento 2 admin URL

We are changing from http://www.ecommercedomain.com/admin to http://www.ecommercedomain.com/newpath.

To change Magento 2 admin URL there are two ways:

Method 1: Change in local.xml

Step 1: Navigate to app/etc/local.xml file under your Magento root directory and edit as given below:

<admin>

  <routers>

    <adminhtml>

      <args>

        <frontname></frontname>

       </args>

     </adminhtml>

  </routers>

</admin>
Replacing admin path with new custom string ‘newpath’:
<admin>

    <routers>

      <adminhtml>

        <args>

          <frontname><!--[CDATA[newpath]]--></frontname>

        </args>

      </adminhtml>

     </routers>

  </admin>

Step 2: Save the file

Step 3: Refresh the Cache from Magento Admin (System -> Cache Management)

Now, you should be able to access admin panel from http://www.ecommercedomain.com/newpath

Method 2: Change from backend settings

This is another easy way to change admin URL from Magento backend admin settings.
Step 1: On the Admin menu, select System > Configure.
Step 2: In the panel on the left, under Advanced, select Admin.
Step 3: Click to expand the Admin Base URL section, and do the following:
3.a. Set Use Custom Admin URL to “Yes.”
3.b. Enter the name of the Custom Admin Path in the following format:
http://www.ecommercedomain.com/newpath
Step 4: When complete, click the Save Config button.
After the changes are saved, you must log in to the Admin using the new Admin URL and path.

We have successfully changed the Magento 2 admin URL.
I hope this tutorial was useful for you. Thanks for reading my blog.