From 9bb6ab9ce01cf1006368ab2466f43913f1be7fdc Mon Sep 17 00:00:00 2001 From: chee Date: Fri, 11 Jan 2019 10:20:00 +0000 Subject: [PATCH] make the /a /c redirects *exact matches* --- nginx.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nginx.conf b/nginx.conf index ed6a5e3..f611e90 100644 --- a/nginx.conf +++ b/nginx.conf @@ -28,11 +28,11 @@ server { root /www/snoot.club/snoots/heart/application/website; } - location /c { + location = /c { return 301 https://chee.snoot.club; } - location /a { + location = /a { return 301 https://abe.snoot.club; } }