greetings, i am attempting to do a simple redirect using django's redirect middleware. everything works fine if you want to redirect from one distinct URI to another, for example,
/big/ ---> http://www.example.com/labowski/ however, if you want to redirect to a child page in terms of the URI structure, it does not seem to work for me. for example: /about/ ---> http://www.example.com/about/broscoen/ what we have here, is an about page that is not finished, so we want folks who request /about/ to go to a subpage but instead you see the / about/ page. we are using apache with mod_python, so i attempted to make it work using apaches Redirect manoeuvre. this was even more fatal, as the Redirect directive will redirect anything that comes in with the / about/ root to /about/broscoen/ , which went into a loop and so we had /about/broscoen/broscoen/broscoen/broscoen/ etc until apache gave up on the request. so i was thinking that perhaps django does not permit this type of redirect. can anyone confirm that? has anyone else had the same problem? huge thanks in advance. yours, steve --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---