From d89ba6bbcfb060e7ebd94144d1d701c9015b781c Mon Sep 17 00:00:00 2001 From: Daniel Micay Date: Sat, 17 Apr 2021 04:21:36 -0400 Subject: [PATCH] redirect mangled backlinks to /usage#updates --- nginx/nginx.conf | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/nginx/nginx.conf b/nginx/nginx.conf index a9960f8e..b500901e 100644 --- a/nginx/nginx.conf +++ b/nginx/nginx.conf @@ -169,6 +169,11 @@ http { return 301 /faq; } + # mangled backlinks to /usage#updates + location = /updates { + return 301 /usage#updates; + } + location = /web-install { return 301 /install/web; }