Written by Super User.

24- How To Change Django Admin Url

The default url for djagno admin site is yoursite/admin. If you want to change that url, it is simpler then you think.

Just change the path from admin to whatever you want (I typed newadmin). That's it.

urlpatterns = [
    path('newadmin/', admin.site.urls),
    path('moviesapp/', include('moviesapp.urls')),
]+ static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)