I know there's some code to automatically add a / to un-closed directories, for example: This works: http://www.desktopwallpaper.org/category/Nature/ HTML: This pulls up a 404 error because missing the last /: http://www.desktopwallpaper.org/category/Nature HTML: Thanks guys!
RewriteEngine on RewriteCond %{REQUEST_FILENAME} -d RewriteRule ^(.+[^/])$ http://www.yourdomainname.com/$1/ [R,L]