我使用vagrant vb和Puphpet Provision安装了一个unix环境。流浪汉之后,当我在浏览器中导航到我的主机地址时,我能够加载服务器页面。但是,在我安装了zf2 skeleton并执行了composer.phar更新并再次导航到主机地址之后,它应该显示zend框架欢迎页面,但它显示了:
<?php
/**
* This makes our life easier when dealing with paths. Everything is relative
* to the application root now.
*/
chdir(dirname(__DIR__));
// Decline static file requests back to the PHP built-in webserver
if (php_sapi_name() === 'cli-server' && is_file(__DIR__ . parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH))) {
return false;
}
// Setup autoloading
require 'init_autoloader.php';
// Run the application!
Zend\Mvc\Application::init(require 'config/application.config.php')->run();
任何人都知道我的流浪者为什么不处理应该的PHP文件?