Hello, I've recently updated my setup to use mod_wsgi instead of mod_python. I'm having some problems with my urls. The home page loads fine but none of my other urls seems to work (404 errors). They worked before with mod_python. Do i need to include something else in my .wsgi file?
import os import sys os.environ['DJANGO_SETTINGS_MODULE'] = 'mysite.settings' sys.path.append('/usr/local/django') import django.core.handlers.wsgi application = django.core.handlers.wsgi.WSGIHandler() ---------------------------------------------------------------------------------------------------------------- or directives? <Directory C:/Apache2.2/mysite/> Order deny,allow Allow from all </Directory> WSGIScriptAlias /mysite/ C:/Apache2.2/mysite/django.wsgi ------------------------------------------------------------------------------------------------------------------ I'm guessing its correct that whatever is in my urls would just go after my site, for example http://localhost:8080/mysite/thanks/ for ('^thanks/$', 'mysite.blog.views.thanks'), Andrew --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---