我在我的 ubuntu 主服务器上安装了 Zend。在我的 .htaccess 文件中,我有以下代码:
SetEnv APPLICATION_ENV development
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-s
RewriteCond %{REQUEST_FILENAME} !-l
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^.*$ index.php [NC,L]
当我在公共文件夹中的 index.php 中回显 APPLICATION_ENV 时,未设置 APPLICATION_ENV。
我究竟做错了什么?
在 apache 中启用了 Mod 重写。