설치
http://www.ciboard.co.kr/user_guide/kr/installation/downloads.html
코드이그나이터 사용자 포럼 : https://www.cikorea.net/
사용할 디렉토리에 업로드.
url에 index.php 안보이게 처리
https://devlink.tistory.com/181?category=703620
welcome.php 대신 사용 할 main 페이지 만들기
/application/config/routes.php
에서 $route['default_controller'] = 'main'; 수정
컨트롤러 만들기
/application/controllers/Main.php
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Main extends CI_Controller {
public function index()
{
//$this->load->view('header'); //필요에 따라
$this->load->view('main');
//$this->load->view('footer'); //필요에 따라
}
}
view 파일 만들기
/application/views/main.php
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<h1>Hello, world!</h1>
</body>
</html>
'[ Web 관련 ] > 코드이그나이터 3.x.x' 카테고리의 다른 글
전역변수 사용 (config 디렉토리) (0) | 2020.04.29 |
---|---|
로더 Loader Class (0) | 2019.08.01 |
DB 쿼리사용 (0) | 2019.05.08 |
파일 다중 업로드 (0) | 2019.04.12 |
DB 연결 -> View 표시 (0) | 2019.03.22 |