From: Michael Tremer Date: Fri, 8 Jan 2021 17:00:55 +0000 (+0000) Subject: downloads: Redirect from downloads.ipfire.org to download page X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=82d4e7895ecade1a0a63feb5cab723d3b97abb87;p=ipfire.org.git downloads: Redirect from downloads.ipfire.org to download page Signed-off-by: Michael Tremer --- diff --git a/src/web/__init__.py b/src/web/__init__.py index 6b529d39..02e0f47e 100644 --- a/src/web/__init__.py +++ b/src/web/__init__.py @@ -175,7 +175,7 @@ class Application(tornado.web.Application): # downloads.ipfire.org self.add_handlers(r"downloads?\.ipfire\.org", [ - (r"/", tornado.web.RedirectHandler, { "url" : "https://www.ipfire.org/" }), + (r"/", tornado.web.RedirectHandler, { "url" : "https://www.ipfire.org/download" }), (r"/release/(.*)", download.ReleaseRedirectHandler), (r"/(.*)", download.FileHandler), ])