일반페이지 메뉴 추가 관련
- 빠지게
- 0
- 1,974
- 글주소
- 12-18
안녕하세요.
초보 개발자 입니다.
CIBoard를 이용하여 홈페이지를 개발 중 인데,
관리자 메뉴에서 일반페이지를 추가하려고 하는데...
주소가... http://도메인/documet/ 이렇게 표기 되었었는데...
http://도메인/ 이렇게 표기 됩니다.
제가 무었을 수정했는지 도통 기억이 나질 않습니다. --;;;
도움 부탁 드리겠습니다.
config.php에 $config['uri_segment_photoalbums'] ='photoalbums'; 를 추가했다가 지웠고,
routes.php에 $route[config_item('uri_segment_photoalbums') . '/([a-zA-Z0-9_-]+)'] = "photoalbums/index/$1"; 를 추가했다가 지운 상태 입니다.
config.php에서 $config['uri_segment_photoalbums'] ='photoalbums';를 추가 하면
주소가... http://도메인/photoalbums/ 이렇게 표기 되고,
config.php에서 $config['uri_segment_photoalbums'] ='photoalbums';를 빼면
http://도메인/ 이렇게 표기 됩니다.
=============================================================================
/application/config/config.php
$config['uri_segment_admin'] ='admin'; //관리자 페이지 주소
$config['uri_segment_board'] ='board'; //게시판 목록 부분 주소
$config['uri_segment_write'] ='write'; //게시글 쓰기 주소
$config['uri_segment_reply'] ='reply'; //게시물 답변하기 주소
$config['uri_segment_modify'] ='modify'; //게시글 수정하기 주소
$config['uri_segment_rss'] ='rss'; // RSS 주소
$config['uri_segment_group'] ='group'; //게시판 그룹 메인 주소
$config['uri_segment_document'] ='document'; //일반 페이지 주소
$config['uri_segment_faq'] ='faq'; //FAQ 페이지 주소
//$config['uri_segment_photoalbums'] ='photoalbums'; //포토앨범 페이지 주소
$config['uri_segment_cmall_item'] ='item'; //Cmall item 페이지 주소
//게시글 주소 ( http://www.ciboard.co.kr/post/123 과 같은 형식의 post 부분)
$config['uri_segment_post'] ='post';
//게시글 주소형식
// A : http://www.ciboard.co.kr/post/123 과 같이 uri_segment_post 와 post_id 가 순서대로 주소에 붙는 형식
// B : http://www.ciboard.co.kr/boardkey/post/123 과 같이 boardkey, uri_segment_post , post_id 가 순서대로 주소에 붙는 형식
// C : http://www.ciboard.co.kr/post/boardkey/123 과 같이 uri_segment_post , boardkey, post_id 가 순서대로 주소에 붙는 형식
$config['uri_segment_post_type'] ='A';
=================================================================