nginx- Rewrite URL with Trailing Slash

Solution 1:

rewrite ^(.*[^/])$ $1/ permanent; # Capture everything not with a trailing slash and add a trailing slash to it.