This is an automated email from the ASF dual-hosted git repository. bryancall pushed a commit to branch via-redirect-tools-to-html in repository https://gitbox.apache.org/repos/asf/trafficserver-site.git
commit aacace942a9e58112ad25c91919a76392e2645ca Author: Bryan Call <[email protected]> AuthorDate: Thu Jul 16 15:30:18 2026 -0700 Redirect /tools/via to /via.html The Via decoder ring page moved from /tools/via to /via.html, leaving the old URL (still referenced by published docs and external links) returning 404. Add a 301 redirect so those links resolve. --- content/.htaccess | 3 +++ 1 file changed, 3 insertions(+) diff --git a/content/.htaccess b/content/.htaccess index 35d2a08..3e8e686 100644 --- a/content/.htaccess +++ b/content/.htaccess @@ -1,3 +1,6 @@ Options +Includes +MultiViews AddOutputFilter INCLUDES .html DirectoryIndex index + +# The Via decoder ring moved from /tools/via to /via.html; keep old links working. +Redirect 301 /tools/via /via.html
