How to remove trailing slash from root WordPress folder?

In your .htaccess file you could try this below the RewriteEngine On line

RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)/$ /$1 [L,R]

Taken from: https://stackoverflow.com/questions/21417263/htaccess-add-remove-trailing-slash-from-url