我正在使用 zend 应用程序,由于某种原因,我刚刚重新安装了我的 WAMP,而在我的 wamp 中运行的现有应用程序没有运行。
我安装了 WAMP 2.1。我的 ZEND 文件夹如下
-application
-design
-public
--index.php
--.htaccess
-library
-- Zend
我.htaccess
的有以下
Options FollowSymLinks MultiViews
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} -s [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [NC,L]
RewriteRule ^.*$ index.php [NC,L]
当我检查文件根目录时:
http://localhost/project/
-application
-design
-library
-- Zend
我没有看到该路径中的公用文件夹,当我删除 .htaccess 时,我可以看到这些文件夹。
我该如何解决这个问题?我想向我的 wamp 添加任何扩展名吗?我检查了 .Htaccess 它和以前一样。