Skip to content

Commit

Permalink
Merge pull request #798 from nhsx/chore/ticket-19293
Browse files Browse the repository at this point in the history
Add more redirects to the urls configuration
  • Loading branch information
snim2 authored Jan 30, 2024
2 parents b8a2fd5 + 8c928a7 commit 17dd736
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions app/config/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
),
),
]


Expand Down

0 comments on commit 17dd736

Please sign in to comment.