无法加载模块:click

错误位置

D:\wwwroot\tianmengerun\wwwroot\Data\Framework\Common\functions.php  LINE: 112

100         return $output;
101 }
102 
103 /**
104  * 404处理
105  * 调试模式会抛异常
106  * 部署模式下面传入url参数可以指定跳转页面,否则发送404信息
107  * @param string $msg 提示信息
108  * @param string $url 跳转URL地址
109  * @return void
110  */
111 function _404($msg='',$url='') {
112     APP_DEBUG && throw_exception($msg);
113     if($msg && C('LOG_EXCEPTION_RECORD')) Log::write($msg);
114     if(empty($url) && C('URL_404_REDIRECT')) {
115         $url    =   C('URL_404_REDIRECT');
116     }
117     if($url) {
118         redirect($url);
119     }else{
120         send_http_status(404);
121         exit;
122     }
123 }
124