I try to get an \"/\" to every urls end:
example.com/art
should
example.com/art/
I use nginx as webserver.
I need the rewrite rule f
For nginx:
rewrite ^(.*[^/])$ $1/ permanent;