From d310e891c4ee992660f067b9909080d6b81d0a9e Mon Sep 17 00:00:00 2001 From: Dave O'Connor Date: Tue, 21 Oct 2025 13:29:12 -0700 Subject: [PATCH] /users/news/version_... release redirect (#1881) --- kube/boost/templates/configmap-nginx.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/kube/boost/templates/configmap-nginx.yaml b/kube/boost/templates/configmap-nginx.yaml index 583f5a50..2f2fce3e 100644 --- a/kube/boost/templates/configmap-nginx.yaml +++ b/kube/boost/templates/configmap-nginx.yaml @@ -107,6 +107,7 @@ data: location = /users/faq.html { return 301 /doc/user-guide/faq.html; } location = /users/proposal.pdf { return 301 /doc/user-guide/boost-history.html; } location ~ ^/users/history/version_(\d+)_(\d+)_(\d+)\.html$ { return 301 /releases/$1.$2.$3/; } + location ~ ^/users/news/version_(\d+).(\d+).(\d+)/?$ { return 301 /releases/$1.$2.$3/; } location = /community/groups.html { return 301 /community/; } location = /community/policy.html { return 301 /doc/user-guide/discussion-policy.html; } location = /community/cpp.html { return 301 /doc/user-guide/faq.html#isocommitteemeetings; }