diff --git a/website/camweb.go b/website/camweb.go index 777a77f08..0e09144aa 100644 --- a/website/camweb.go +++ b/website/camweb.go @@ -889,6 +889,10 @@ func gerritRedirect(w http.ResponseWriter, r *http.Request) { } func releaseRedirect(w http.ResponseWriter, r *http.Request) { + if r.URL.Path == "/dl" || r.URL.Path == "/dl/" { + http.Redirect(w, r, "https://camlistore.org/download/", http.StatusFound) + return + } dest := "https://storage.googleapis.com/camlistore-release/" if len(r.URL.Path) > len("/dl/") { dest += r.URL.Path[1:]