diff --git a/borgweb/borgweb/urls.py b/borgweb/borgweb/urls.py index c454953..5e770fd 100644 --- a/borgweb/borgweb/urls.py +++ b/borgweb/borgweb/urls.py @@ -15,8 +15,9 @@ Including another URLconf """ from django.contrib import admin from django.urls import include, path +from django.http import HttpResponseRedirect urlpatterns = [ - path('borg/', include('borg.urls')), + path('', include('borg.urls')), path('admin/', admin.site.urls), ]