Announcement

Collapse
No announcement yet.

Change admin login URL

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Change admin login URL

    Is there anyway to change the admin login URL to enhance security? For example instead of being site123.com/mm5/admin.mvc make it site123.com/mm5/adminXYZ52528.mvc

    #2
    No, but you could enable two factor authentication and then no one could log in even if they were able to obtain, guess or brute force your password.
    David Hubbard
    CIO
    Miva
    [email protected]
    http://www.miva.com

    Comment


      #3
      I know but I'd like to make it even more secure than that! :)

      It would be nice if there was an option to put a 30 days save on the two factor authentication like Google allows you to do.
      Last edited by Foreman2; 06-07-16, 12:10 PM.

      Comment


        #4
        You can add an http restriction on reaching admin.mvc, something like this in a .htaccess file in the mm5 directory:

        Code:
        <Files admin.mvc>
        Order deny,allow
        Deny from all
        Allow from 192.0.2.1
        </Files>
        Last edited by ILoveHostasaurus; 06-07-16, 12:13 PM.
        David Hubbard
        CIO
        Miva
        [email protected]
        http://www.miva.com

        Comment

        Working...
        X