My /train directory is aliased to a script in httpd.conf by: WSGIScriptAlias /train /some-path/../django.wsgi

And it works well, except for one problem. If a user goes to /train (with no trailing slash) it will not redirect him to /train/, but will just give him the right page. This is a problem because this way the relative links on this page lead to the wrong place when no trailing slash was used to access it.

How can this be worked out?

Thanks.

link|improve this question

73% accept rate
Are you asking about the docs.djangoproject.com/en/dev/ref/settings/#append-slash setting? – S.Lott Mar 25 '10 at 21:28
Turns out that I'm actually looking for an Apache solution, because currently when the user goes to /train nothing is forwarded to my Django code. Thanks for your comment. – user302099 Mar 27 '10 at 11:43
feedback

3 Answers

up vote 5 down vote accepted

I'm using something like this for redirecting /train to /train/, what I do is redirecting all the URL than doesn't end with / to /train/.

<Location "/train">
     Order deny,allow
     Allow from all
     RewriteEngine on
     RewriteRule  !^.*/$  /train/  [R]
</Location>

WSGIScriptAlias /train /some-path/../django.wsgi
link|improve this answer
Finally a solution! Thank you very much! – user302099 May 23 '10 at 22:18
feedback

If you just need to redirect from /train to /train/ and not from every subdirectory without a trailing slash, then there's a simpler solution using the RedirectMatch directive:

RedirectMatch ^/train$ /train/
link|improve this answer
feedback

Set your urlconf to accept train/ as valid instead, then make train lead to a generic redirect to /train/.

link|improve this answer
Thanks, but Django can't tell if the user went to train or to train/ because both are detected by the pattern "^$" because the Apache server redirects only /train/(.*) to Django. I guess the solution has to be in httpd.conf and not in Django, at least if I want to make my Django code independent of the containing directory (that is - changing /train/ to some other name in httpd.conf should be the only thing to do if I want to change the directory name). – user302099 Mar 27 '10 at 11:41
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.