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
Try this: ^(.*)$ http://domain.com/$1/ [L,R=301]
^(.*)$ http://domain.com/$1/ [L,R=301]
This redirects (Status code 301) everything ($1) without a "/" to "$1/"