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