3
I need to add a bar (/) to the end of the url using . htaccess.
My current . htaccess is 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>
Someone knows how to do it?