Currently I have this location block:
location = /events {
rewrite ^ https://totallydifferenturl.com;
}
This successfully redirects from mywebsite/events, but I want this block to also handle mywebsite/events/.
Trying location = /events/? didn't work out.