我有Windows XP / Django / apache / mod_python在本地主机上工作。除了管理CSS不呈现之外,所有部分都在工作。管理工程,但没有HTML格式。我已经添加了:
@H_301_6@settings.py INSTALLED_APPS 'django.contrib.admin',urls.py from django.contrib import admin admin.autodiscover() (r'^admin/(.*)',admin.site.root),conf/http.conf <Location "/"> SetHandler python-program PythonPath "['C:/django'] + sys.path" PythonHandler django.core.handlers.modpython SetEnv DJANGO_SETTINGS_MODULE mysite.settings PythonDebug On </Location> <Location "/cpssite/"> SetHandler python-program PythonHandler django.core.handlers.modpython SetEnv DJANGO_SETTINGS_MODULE myapplication.settings PythonInterpreter /myapplication PythonDebug On </Location>