我在我的主域(example.com)上托管了一个Django应用程序,现在我需要在子域(forum.example.com)上托管一个
PHP应用程序.
在主域的目录中,我有以下.htaccess条目:
SetHandler mod_python
PythonPath "/home/.../apps/example'] + sys.path"
PythonOption mod_python.importer.path "['/home/vlive/python']+ sys.path"
PythonHandler django.core.handlers.modpython
#PythonDebug On
SetEnv DJANGO_SETTINGS_MODULE example.settings
SetEnv PYTHON_EGG_CACHE /tmp/egg-cache
目前,当我加载子域(forum.example.com)时,我仍然看到主站点(example.com).
我怎样才能解决这个问题?
最佳答案 您需要通过VirtualHost指令设置子域,并且只在其中一个VirtualHost中添加mod_python / mod_wsgi处理程序.
你说你加载了子域,它仍然显示主站点.您介意向我们展示您的Apache的站点配置吗?