I currently have a simple apache /var/www setup. I have a bunch of static HTML files in a directory (let's call it /var/www/mydir), which show up on http://mysite.com/mydir/filename.htm.
Now, I want to start serving Django content (via a virtualenv) on http://mysite.com/, however I would like http://mysite.com/mydir/ to keep serving the static HTML it used to.
Is there any way I can configure Apache to call Django in the case of http://mysite.com/* links and pull up static HTML in the case of http://mysite.com/mydir/* links?
If not, how can I tell Django to serve HTML files from /var/www/mydir for `http://mysite.com/mydir/* links?