I use something like this for redirecting / training / training /, what I am doing is redirecting the whole URL, which does not end with / to / train /.
<Location "/train"> Order deny,allow Allow from all RewriteEngine on RewriteRule !^.*/$ /train/ [R] </Location> WSGIScriptAlias /train /some-path/../django.wsgi
source share