【发布时间】:2016-02-11 21:20:34
【问题描述】:
我已经用 ISPConfig 建立了一个网站。
在那个网站根目录中我创建了符号链接test/ -> /var/test/
/var/test/ 包含两个文件 - test.php 和 test.html。 test.html 工作正常,但是当我尝试运行 test.php 时,我得到一个带有文本 No input file specified.
我的网站由运行 Apache 2.2.22 的 ISPConfig 自动配置。这是配置的摘录 - 如果您需要查看更多内容,请询问:
<VirtualHost *:80>
<Directory /var/www/clients/client1/web2/web>
Options FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all
</Directory>
<FilesMatch "\.ph(p3?|tml)$">
SetHandler None
</FilesMatch>
<Directory /var/www/clients/client1/web2/web>
AddHandler fcgid-script .php .php3 .php4 .php5
FCGIWrapper /var/www/php-fcgi-scripts/web2/.php-fcgi-starter .php
Options +ExecCGI
AllowOverride All
Order allow,deny
Allow from all
</Directory>
【问题讨论】: