ZendFramework使用

liuer0311發表於2017-11-21
預設的Zend Framework使用MVC機制,它採用rewrite的方式進行跳轉,這就需要在apache的配置檔案中(一般是httpd.conf)修改加入允許rewrite的選項,需要的步驟是:
1. 找到LoadModule rewrite_modulemodules/mod_rewrite.so將其前面的#去掉
2. 在專案所在的目錄下<Directory “projectPath”>中修改AllowOverride的值為All,Order allow,deny / Allow from all
3. 在專案所在根目錄下建立.htaccess檔案,內容為
RewriteEngine on #重寫引擎開啟
RewriteRule!.(js|ico|gif|jpg|png|css)$ index.php
#制定除js,ico,gif,jpg,png,css以外的檔案全都被重置到index.php,index.php為專案的首頁(其實是前端轉發控制頁)


相關文章