From bd3cfebafd295f371cdfaff0a55b8df88f190b00 Mon Sep 17 00:00:00 2001 From: Daniel Micay Date: Fri, 11 Jun 2021 10:18:57 -0400 Subject: [PATCH] fix object replacement character redirect --- nginx/nginx.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nginx/nginx.conf b/nginx/nginx.conf index 385781db..aa1a70d8 100644 --- a/nginx/nginx.conf +++ b/nginx/nginx.conf @@ -160,8 +160,8 @@ http { return 301 /usage#updates; } - # broken link (now fixed) on https://noagendaphone.com/ with UTF-8 replacement character - location = /%EF%BF%BC { + # broken link (now fixed) on https://noagendaphone.com/ with UTF-8 object replacement character + location = "/" { return 301 /; }