[Answer]-Once I activate admin, Django under mod_wsgi can't find other URLs

1👍

You don’t have a url defined for the root of your site. You’ll need to add one, for example:

url(r'^$', 'dj1_net.views.my_view_function'),

That would go after the line that defines the admin URL.

Leave a comment