I've got this setup:
RewriteRule ^brands$ brands/ [R=301,L]
RewriteRule ^brands/$ /brands.php
RewriteRule ^brands/([A-ZÆØÅæøåa-z0-9-]+)-([0-9]+)/$ index.php?manufacturers_name=$1&manufacturers_id=$2 [L,QSA]
RewriteRule ^brands/([0-9]+)$ index.php?manufacturers_id=$1 [L]
How would I fix it so there's always a trailing slash on this. Those specific URLs?
example.com/brands/brand-id
So if I went to either example.com/brands/brand-id
OR example.com/brands/brand-id/
, it'll work as having a trailing slash?