I'm just about to launch a new Django website (RedHat EL4, Apache 2.0.52, Django 1.1, mod_wsgi), transitioning from a basic static-html and php site. As it's currently configured, Django handles every request on the new site, starting from the site root (i.e. mydomain.com/ is processed by Django).
The old site had a PhpBB forum set up at mydomain.com/forum/. I'm trying to figure out how (or if) I can get the forum system to live in the same place on the new site. So, anything under mydomain.com/forums/ is handled by PhpBB and everything else is handled by Django.
I feel like the Apache 'Location' directive is the tool to use, but I'm not getting enough specific advice from the Apache docs and Google. I'm reasonably familiar with Apache conf files, but I haven't had to do this type of thing before. Thanks for any suggestions.