From 93a528bb27ee325d71b9f0924481e8e303d3b3c7 Mon Sep 17 00:00:00 2001 From: alice Date: Sat, 18 Sep 2021 00:34:48 +0200 Subject: [PATCH] add old page name redirections --- ccvpn/urls.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ccvpn/urls.py b/ccvpn/urls.py index 19ea7bf..df8f49b 100644 --- a/ccvpn/urls.py +++ b/ccvpn/urls.py @@ -21,6 +21,9 @@ urlpatterns = [ path('setlang', views.set_lang, name='set_lang'), path('chat', views.chat, name='chat'), path('page/faq', RedirectView.as_view(url='/kb/')), + path('page/install-gnulinux', RedirectView.as_view(url='/page/install-linux')), + path('page/install-openvpn', RedirectView.as_view(url='/page/install-other')), + path('page/support', RedirectView.as_view(url='/page/help')), path('page/', views.page, name='page'), path('status', account_views.status),