zoukankan      html  css  js  c++  java
  • Yii错误404页面

    		'errorHandler'=>array(
    			// use 'site/error' action to display errors
    			'errorAction'=>YII_DEBUG ? null : 'site/error',
    		),
    

      上面的意思是,如果把入口脚本的 debug注释掉,就是直接跳到错误页面,不会显示 下面的页面

    CHttpException
    
    Unable to resolve the request "sit/login".
    
    D:myampApachehtdocsstudy	x_yiiframeworkwebCWebApplication.php(286)
    
    274     public function runController($route)
    275     {
    276         if(($ca=$this->createController($route))!==null)
    277         {
    278             list($controller,$actionID)=$ca;
    279             $oldController=$this->_controller;
    280             $this->_controller=$controller;
    281             $controller->init();
    282             $controller->run($actionID);
    283             $this->_controller=$oldController;
    284         }
    285         else
    286             throw new CHttpException(404,Yii::t('yii','Unable to resolve the request "{route}".',
    287                 array('{route}'=>$route===''?$this->defaultController:$route)));
    288     }
    289 
    290     /**
    291      * Creates a controller instance based on a route.
    292      * The route should contain the controller ID and the action ID.
    293      * It may also contain additional GET variables. All these must be concatenated together with slashes.
    294      *
    295      * This method will attempt to create a controller in the following order:
    296      * <ol>
    297      * <li>If the first segment is found in {@link controllerMap}, the corresponding
    298      * controller configuration will be used to create the controller;</li>
    Stack Trace
    

      

  • 相关阅读:
    JavaScript技巧45招(转)
    css3毛玻璃效果白边问题
    css3兼容性问题归纳
    H5页面JS调试
    js操作cookie的函数
    webkit webApp 开发技术要点总结【转】
    Android如何避免输入法弹出时遮挡住按钮或输入框
    Git使用问题汇总
    Known快速开发框架
    Visual Studio 常用快捷键
  • 原文地址:https://www.cnblogs.com/rainblack/p/5607502.html
Copyright © 2011-2022 走看看