Is there anything that can be done about trailing slashes?
I agree and hope that this is solved in EE 2, right now there are two valid ways to access pages, with a slash and without. If you’re concerned about duplicate content as far as search engines are concerned, well here’s another example.
Here’s what I do in my htaccess to address the trailing slash issue (i don’t want trailing slashes):
# remove trailing slash if not a directory
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.+)/$ /$1 [R=301,L]And anywhere in the templates where it displays a link, I use a plugin (slashee) to remove trailing slashes. Works well, but this should be built-in to EE.