I have this rule which works great and adds a trailing slash for every directory on my site.
How Can I add trailing slashes for only certain directories such /courses/ ? I don’t want every directory / path to have a trailing slash.
RewriteCond %{REQUEST_URI} ^/[^\.]+[^/]$
RewriteRule ^(.*)$ http://%{HTTP_HOST}/$1/ [R=301,L]
Should work where
courses,fooandbarare directories that you want to add a trailing slash to.