CodeIgniter에서 사이트 렌더링 과정
1. 사이트 접속 2. 라우터에 의해 default_controller 는 Config 클래스의 site() 메서드 실행3. widget head 실행 head 쪽 html은 열린상태 4. 다시 돌아와서 skin/config/site.html 로드 1~3 은 헤더라고 보면 되고 4는 말 그대로 사이트 블럭 관련 렌더링 config.php 파일의 site() 메서드 실행.site() 메서드에서 @widget::run('head', $head) 호출.widget 클래스의 head.php가 실행되고, 내부적으로 head.html 파일을 로드.다시 **config.php**로 돌아와서 $this->load->view('config/site', $data) 호출.config/site.html 파일이 로드됨.Co..