Removendo barras à direita com mod rewrite?

Isso está relacionado à minha pergunta anterior (que pode ser vistaAqui). Gostaria de poder remover a barra do URL para que não atrapalhe determinadas áreas do meu site. O código .htaccess está aqui:

# -s = File Exists
RewriteCond %{REQUEST_FILENAME} -s [OR]
# -l = Is a SymLink
RewriteCond %{REQUEST_FILENAME} -l [OR]
# -d = Is a Directory
RewriteCond %{REQUEST_FILENAME} -d
# if we match any of the above conditions - serve the file.
RewriteRule ^.*$ - [NC,L]

# only allows '.' in the "page" portion.
RewriteRule ^([^/.]+)/?$ index.php?section=$1 [L]
RewriteRule ^([^/.]+)/([^/]+)/?$ index.php?section=$1&page=$2 [L]
RewriteRule ^([^/.]+)/([^/]+)/([^/.]+)/?$ index.php?section=$1&page=$2&split=$3 [L]

Como antes, eu estou fora da minha profundidade com isso, então alguém pode ajudar?

questionAnswers(1)

yourAnswerToTheQuestion