1. /usr/local/apache/conf/httpd.conf
LoadModule rewrite_module modules/mod_rewrite.so // 주석해제
<Directory />
..
AllowOverride All // 기본값 "none" 부분을 "All"로 변경
..
</Directory>
2. /application/config/config.php
$config['index_page'] = '' // index.php 삭제
3. html 루트 디렉토리 .htaccess
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond $1 !^(index\.php|images|captcha|robots\.txt) // 루트 밑에 js(jquery) 폴더를 생성할 경우 | | 사이에 폴더명 추가
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /todo/index.php/$1 [L]
</IfModule>
'php, codeigniter' 카테고리의 다른 글
기본 로드 라이브러리 설정 (0) | 2014.10.08 |
---|---|
세그먼트(segment)란? (0) | 2014.10.08 |
construct 선언하기(기본 라이브러리 로드) (0) | 2014.10.08 |
데이터베이스 정보 설정하기 (0) | 2014.10.08 |
페이지 로딩 정보 함수들 (0) | 2014.10.08 |