From 8c928a7f07208f0e401ec4e23976c16a23f08f7b Mon Sep 17 00:00:00 2001 From: Sarah Mount Date: Tue, 30 Jan 2024 14:42:51 +0000 Subject: [PATCH] Add more redirects to the urls configuration See: https://dxw.zendesk.com/agent/tickets/19293 --- app/config/urls.py | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/app/config/urls.py b/app/config/urls.py index c70f3cc9..662af05d 100644 --- a/app/config/urls.py +++ b/app/config/urls.py @@ -103,6 +103,21 @@ def robots(request): permanent=True, ), ), + # https://dxw.zendesk.com/agent/tickets/19293 + url( + r"^key-tools-and-info/data-saves-lives/accessing-data-for-research-and-analysis/", + lambda request: redirect( + r"/key-tools-and-info/data-saves-lives/secure-data-environments/accessing-data-for-research-and-analysis/", + permanent=True, + ), + ), + url( + r"^key-tools-and-info/data-saves-lives/accessing-data-for-research-and-analysis/work-in-progress/", + lambda request: redirect( + r"/key-tools-and-info/data-saves-lives/secure-data-environments/how-will-secure-data-environments-be-delivered/", + permanent=True, + ), + ), ]