I would like to setup Django with WSGI and Apache on root (/) of the website, but I would like that Apache servers through WSGI (and Django) only those URLs which do not have corresponding file to serve directly.
For PHP I would do something like this with:
RewriteCond %{REQUEST_FILENAME} !-f
and then rewrite to some index.php or something. But how to do that with WSGI?