diff --git a/bedrock/mozorg/redirects.py b/bedrock/mozorg/redirects.py index 9e9a6242b49..53667d3e4d2 100644 --- a/bedrock/mozorg/redirects.py +++ b/bedrock/mozorg/redirects.py @@ -569,4 +569,6 @@ def decider(request, **kwargs): redirect(r"^webvision/?$", "mozorg.about.webvision.summary", locale_prefix=True, prepend_locale=False), # issue 14944 redirect(r"^nothing-?personal/?$", "firefox.nothing-personal.index"), + # Issue 15008 + redirect(r"^try-picture-in-picture/?$", "firefox.features.picture-in-picture"), ) diff --git a/tests/redirects/map_globalconf.py b/tests/redirects/map_globalconf.py index 26eb5f5b0b6..7cac6949667 100644 --- a/tests/redirects/map_globalconf.py +++ b/tests/redirects/map_globalconf.py @@ -1304,5 +1304,7 @@ # issue 14944 url_test("/{nothing-personal,nothingpersonal}/", "/firefox/nothing-personal/"), url_test("/firefox/nothingpersonal/", "/firefox/nothing-personal/"), + # issue 15008 + url_test("/try-picture-in-picture/", "/firefox/features/picture-in-picture/"), ) )