diff options
| -rw-r--r-- | blog/urls.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/blog/urls.py b/blog/urls.py index 64f89ff7..7824476c 100644 --- a/blog/urls.py +++ b/blog/urls.py @@ -5,6 +5,7 @@ from . import views urlpatterns = [ path('', views.home, name='home'), path('my/', RedirectView.as_view(pattern_name='account', permanent=False)), + path('account/', RedirectView.as_view(pattern_name='account', permanent=False)), path('my/account', views.account, name='account'), path('my/homepage', views.homepage, name='homepage'), ] |
