ClemensKim - kyj909

코드이그나이터 URL 라우팅 본문

IT/JAVA & PHP

코드이그나이터 URL 라우팅

kyj909 2020. 6. 17. 00:26

application -> config -> routes.php 에서 작성하면됨

 

 

이런식으로. 나는 

$route['aboutus'] = "main/aboutus";
$route['service'] = "main/service";
$route['serverlist'] = "main/serverlist";
$route['business_introduction'] = "main/business_introduction";
$route['techRecord'] = "main/techRecord";

 

그리고  Url 쪽에 .html 을 붙이는 방법은

application -> config -> config.php 에서 보면

 Url suffix 라고 있음 <-- url  접미사

$config['url_suffix'] = '.html'; 

 

이렇게 하면 됨

 

 

Comments