diff --git a/caromserver/urls.py b/caromserver/urls.py index 5aa52c1..585e9f9 100644 --- a/caromserver/urls.py +++ b/caromserver/urls.py @@ -25,5 +25,5 @@ urlpatterns = [ url(r'^login/$', auth_views.login), url(r'^logout/$', auth_views.logout), url(r'^', include('django.contrib.auth.urls')), - url(r'^.*$', RedirectView.as_view(url='billard/', permanent=False), name='index') + url(r'^$', RedirectView.as_view(url='billard/', permanent=False), name='index') ]