在EC2 linux中使用ZendFramework时,在操作页面上找不到页面

时间:2012-09-27 19:24:21

标签: apache zend-framework amazon-ec2

我只是在我的ec2图像中设置了一个灯堆,现在我正在尝试使用ZendFramework 1.11.12。

所以这就是我到目前为止所做的:

1. Go to /etc/httpd/conf/httpd.conf and change all 'AllowOverride None' to 'AllowOverride All'. Restart apache;
2. Set up an alias for zend_tool: 'alias zf=/path/to/bin/zf.sh'. I use zf for it;
3. Use 'zf create project xxx' to create a project. Here I can go to the Index controller by entering 'ipAddress/xxx';
4. Use 'zf create action test Index' to create a action called 'test' in the Index controller. And I failed on this step ... ...

有谁能告诉我我错过了什么?

提前谢谢你:)

1 个答案:

答案 0 :(得分:0)

只是错过了网址上的虚拟部分......没关系。所以Zend中url的语法是这样的:ipAdress / controller / action。在行动之前我错过了控制器。这解释了答案。