答案 0 :(得分:0)
不要忘记将名为 Boxfile 的文件添加到项目文件夹(但不包括 / public )。
运行ZendFramework Hello World 应用程序所需的 Boxfile 的最小内容是:
web1:
document_root: public
其中web1
是实例名称。
此外,您的应用 / public 文件夹中应该有一般ZF .htaccess
:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} -s [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [NC,L]
RewriteRule ^.*$ index.php [NC,L]