我正在尝试在本地运行 ZendFramework 2框架应用程序。我是这个框架的新手。
使用此处提供的说明在 Openshift 上创建 PHP5 应用程序后,我将其克隆到本地并将 Zend Skeleton 应用程序解压缩到其中。我通过 Netbeans 安装了 Composer 依赖项。
正如 Zend 说明中提到的,我去了我的public
目录并启动了内置服务器:
cd public
php -S localhost:8888
当我打开http://localhost:8888/
orhttp://localhost:8888/public
时,我得到一个空白页。当我打开时http://localhost:8888/public/index.php
,我得到一个带有错误消息的漂亮页面:
The requested resource /public/index.php was not found on this server.
这肯定是一些配置问题,但我不知道是哪个。有谁知道发生了什么?