我在CodeIgniter项目中发现了这个错误。 htaccess文件正在重写为/index.php/$1 [L]
我知道这可以通过修改htaccess(.htaccess problem: No input file specified)中的重写规则来解决,但是我真的在寻找可以在不修改每个站点的htaccess文件的情况下完成服务器范围的修复。
那么有什么东西可以添加到vhost(或其他地方)以使FastCGI查看并处理index.php文件?我的vhost目前看起来像这样:
<VirtualHost *:80>
ServerAlias dev.project.com
DocumentRoot "c:/dev.wamp/www/project"
<Files ~ "\.php$">
FcgidWrapper "c:/dev.wamp/bin/php/5.3/php-cgi.exe" .php
</Files>
</VirtualHost>