请求/ cgi-bin / php时为什么会出现500错误

时间:2014-09-26 10:04:47

标签: php apache cgi

为什么在请求/ cgi-bin / php

时会出现500错误

我已经安装了php作为cgi进程,它工作正常,除非我请求特定网址。

这是我的conf:

<IfModule mod_fcgid.c>
    IdleTimeout 3600
    ProcessLifeTime 7200
    MaxProcessCount 64
    DefaultMaxClassProcessCount 8
    IPCConnectTimeout 300
    IPCCommTimeout 7200
    BusyTimeout 300

    <FilesMatch ".+\.php$">
        SetHandler application/x-httpd-php
    </FilesMatch>

    ScriptAlias /cgi-bin/ /opt/php/cgi/

    <Directory "/opt/php">
        AllowOverride None
        Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
        Order allow,deny
        Allow from all
    </Directory>
</IfModule>

0 个答案:

没有答案