Virtualhost子域内部服务器错误

时间:2014-08-25 15:03:43

标签: php apache virtualhost

我正在尝试为我的PHP应用程序设置用户生成的子域。

当我转到 sub.domain.com 并且如果我上传index.html文件它工作正常,但是如果我使用index.php它会给我一个"内部服务器错误500"消息

我已完成以下步骤以使子域工作

第1步:

编辑了我的DNZ区域文件并附加了* .domain.com。在A 91.111.111.111

第2步:

以下内容附加到httpd.conf:

<VirtualHost 91.111.111.111:80>
    ServerName domain.com
    ServerAlias *.domain.com
    DocumentRoot /home/domain/public_html/sub
    <Directory "/home/domain/public_html/sub">
        Options -Indexes 
        Options FollowSymLinks
        AllowOverride All
    </Directory>
</VirtualHost>

第3步:

通过在步骤2中将index.html文件上载到文档目录进行测试,并且工作正常。尝试使用index.php给出内部服务器错误然后我查看Apache错误日志并显示重定向循环错误超过10次

更新:收到此错误:

没有用户或组设置 - 设置suPHP_UserGroup

为什么我不能在目录中使用任何.php文件?

0 个答案:

没有答案