问题描述
我是新来的 Zend公司即可。我的问题是,我想提出一个新的控制器,但无法访问该控制器。例如,如果控制器的名字是测试我得到这个错误。
I am new to Zend. My problem is that I am making a new Controller but unable to access that controller. For example if Controller name is Test I got this error.
文件不存在:E:/ ZendProject / zendy /公/测试
我做了大量的搜索,但解决不了的问题。我修改的httpd.conf 并做出这种改变。
I did lots of searches but can't solve the problem. I change the httpd.conf and made this change
的AllowOverride无
来的AllowOverride全部
但比我无法访问主页,它说,这是被禁止的。这是我的的httpd.conf 文件的快照
AllowOverride None
toAllowOverride All
but than I can't get access to the main page and it says it is forbidden. Here is my httpd.conf file snapshot
Include "c:/wamp/alias/*"
NameVirtualHost 127.0.0.1:80
<VirtualHost 127.0.0.1>
DocumentRoot "E:\ZendProject\zendy\public"
ServerName zendy
<directory "E:\ZendProject\zendy\public">
DirectoryIndex index.php
AllowOverride None
Options None
Order allow,deny
Allow from all
</directory>
</VirtualHost>
帮我在这方面
推荐答案
因为你没有提供有关您的问题的详细介绍,我建议,
as you didn't provide any detailed description about your problem i suggest,
请遵循Zend框架提供的快速启动应用程序,它会解决你所有的疑惑,
please follow the quickstart application provided by the zend framework , it will solve all your doubts,
此外,我建议看看最好的例证由阿伦抢,
also i suggest to take a look at the best example for beginners on zend by rob Allen,
...
我希望这将有助于..
i hope this will help..
这篇关于Zend和WAMP配置的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!