Hello I am trying to redirect from forum to forums: https://domain.com/forum/topic/blabla to https://domain.com/forums/topic/blabla I tested this: location ~ /forum(.*) { rewrite ^(.*)$ /forums$1 redirect; } and this: location ~ /forum/(.*) {...