I need to add a forward slash (/) to the end of the url using .htaccess.
My current .htaccess looks like this:
<IfModule mod_rewrite.c>
Options +FollowSymLinks
RewriteEngine on
RewriteCond %{HTTP_HOST} ^dominio.com.br [NC]
RewriteRule ^(.*)$ http://www.dominio.com.br/$1 [L,R=301]
RewriteRule ^index\.html$ / [R=301,L]
RewriteRule ^([a-z0-9-]+)/?$ /$1.html [NC]
</IfModule>
Does anyone know how to do this?