I just finished to serve my pages on the internet through apache. I can see
my webpage nicely, but when I try the admin, the django admin page don't
have the css with it, just the html page. But my webpage's css are
displaying nicely. What am I missing? Please guide me. Thank you!

my http.conf snippet:


    WSGIPythonPath C:/Users/robin/web/etc/etc


    <Directory C:/Users/robin/web/etc/etc>

    <Files wsgi.py>

    Order deny,allow

    Allow from all

    </Files>

    </Directory>


    #Alias /robots.txt /path/to/mysite.com/static/robots.txt

    #Alias /favicon.ico /path/to/mysite.com/static/favicon.ico


    AliasMatch ^/([^/]*\.css) C:/Users/robin/web/etc/etc/static/styles/$1


    #Alias /media/ /path/to/mysite.com/media/

    Alias /static/ C:/Users/robin/web/etc/etc/static/


    <Directory C:/Users/robin/web/etc/etc/static>

    Order deny,allow

    Allow from all

    </Directory>


    #<Directory /path/to/mysite.com/media>

    #Order deny,allow

    #Allow from all

    #</Directory>


    WSGIScriptAlias / C:/Users/robin/web/etc/etc/etc/wsgi.py


    <Directory C:/Users/robin/web/etc/etc/etc>

    <Files wsgi.py>

    Order allow,deny

    Allow from all

    </Files>

    </Directory>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to