설정 파일 때문에 삽질하지 맙시다.
~php
<Location "/<웹을 통해 접근할 주소>">
SetHandler python-program
PythonHandler django.core.handlers.modpython
PythonPath "['<프로젝트 부모폴더>'] + sys.path"
SetEnv DJANGO_SETTINGS_MODULE <프로젝트 이름>.settings
PythonDebug On
</Location>
예시 /path/to/project/mysite 에 settings.py 파일이 있는 경우
~php
<Location "/mysite"> #http://localhost/mysite
SetHandler python-program
PythonHandler django.core.handlers.modpython
PythonPath "['/path/to/project'] + sys.path"
SetEnv DJANGO_SETTINGS_MODULE mysite.settings
PythonDebug On
</Location>
실수로
~php
<Location "/mysite/">
라고 쓰면
http://localhost/mysite 는 안 되고
http://localhost/mysite/ 가 되니까 조심해야 합니다.
그래도 안 되면 다음 사이트를 참고해 봅시다.