On Dec 20, 10:41 am, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote:
However, I am wondering if I can tell a particular project to mount onhttp://mydomain.com/my_django/instead on root. This way I would have more flexibility like running multiple django instance.
You can probably write such a set of rewrite rules that redirect to different fcgi scripts, for example: RewriteRule ^(dispatch1\.fcgi/.*)$ - [L] RewriteRule ^(dispatch2\.fcgi/.*)$ - [L] RewriteRule ^(first_prefix/.*)$ dispatch1.fcgi/$1 [L] RewriteRule ^(second_prefix/.*)$ dispatch2.fcgi/$1 [L] Note: I haven't tested the above rules, they are just an idea! --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected] 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 -~----------~----~----~----~------~----~------~--~---

