Try something like this.
(work so good with me, i have win 7, virtualhost in wamp and wsgi.
apache - httpd:
modules:
LoadModule wsgi_module modules/mod_wsgi.so
virtual host
<VirtualHost *:1000>
ServerAdmin root@localhost
DocumentRoot "D:/htdocs"
ServerName localhost
# RewriteEngine on
WSGIScriptAlias / "D:/htdocs/django/django/wsgi.py"
Alias /static/ "D:/htdocs/django/django/static/"
<Directory "D:/htdocs">
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
Allow from all
</Directory>
best regards