如设置ZendFramework的自定义错误页(404
/**
* 设定抛出异常
*/
//$front->throwExceptions ( true );//自定义404页面时,要将此关闭
这样完成后,再在default>controllers文件夹下建立ErrorController.php这个控制器,里面代码为:
<?php
/*
*错误404页
*
*/
class ErrorController extends Zend_Controller_Action{
public function errorAction(){
???
// 在此写你的代码
}
?>