Hi list, I need to make Django cooexist with mailman. As I understand it, Django normally proccesses all requests which are sent to www.my-domain.name. What I need to figure out is how to avoid that. I want to get Django to ignore some URLs. For exampel, I would like to have requests to www.my-domain.name/mailman to be handled completly outside Django.
My first take was to redirect all requests for www.my-domain.name/mailman to another apache server at www.my-domain.name:8090/mailman, but that only partly worked. Mailman is a cgi-script, any POSTs that are redirected are globbed, so one cannot post any data - which is an requirement. I then tried to use Djangos redirect feature, but that didn't work at all. Next I tried to create a virtualhost listening at another port (8090). Didn't help - Django took care of the request. Now I'm thinking of having Django be configured as a virtual host and have an .htaccess file with a RedirectMatch rule point to the Django app. Any one has any suggestions? Can it be done by using Djangos URLconf? TIA, Peter Brink --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---