This snippet will remove all the slashes on the end of a url
# Remove the trailing slash
RewriteCond %{HTTP_HOST} ^(www.)?site\.com$ [NC]
RewriteRule ^(.+)/$ http://site.com/$1 [R=301,L]
but how do i customize this to only do it for
http://site.com/only_me/
to
http://site.com/only_me
Also do what is this doing
RewriteCond %{HTTP_HOST} ^(www.)?site\.com$ [NC]
and do i need it
Try
RewriteRule ^only_me\/$ http://site.com/only_me [R=301, L]