From: Michael Tremer Date: Thu, 26 Mar 2009 21:52:25 +0000 (+0100) Subject: Fixed redirection from ipfire.org to www.ipfire.org. X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7389f5eefccb859d480ab5e5f044503a6cd4518a;p=ipfire.org.git Fixed redirection from ipfire.org to www.ipfire.org. --- diff --git a/www/redirect.py b/www/redirect.py index ada125b5..549fe9d2 100644 --- a/www/redirect.py +++ b/www/redirect.py @@ -11,7 +11,7 @@ for language in ("de", "en",): site = cgi.FieldStorage().getfirst("site") or "index" -sites = { "ipfire.org" : "www.ipfire.org", +sites = { "ipfire.org" : "http://www.ipfire.org", "www.ipfire.org" : "/%s/%s" % (language, site,), "source.ipfire.org" : "http://www.ipfire.org/%s/source" % language, "tracker.ipfire.org" : "http://www.ipfire.org/%s/tracker" % language,