PK8AE
CodeIgniter index.php 없애기 본문
application 폴더와 system 폴더, index.php 파일이 위치한 디렉토리에 .htaccess 파일을 만들어준다.
<IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond $1 !^(index\.php|images|captcha|data|include|uploads|robots\.txt) RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ /index.php/$1 [L] </IfModule>
|
'php > CodeIgniter' 카테고리의 다른 글
CodeIgniter 인덱스 기본 + 간단한 함수와 매개변수 예제 (0) | 2016.11.01 |
---|---|
CodeIgniter 참고사이트 (0) | 2016.10.31 |
모델 뷰 컨트롤러 Model-View-Controller (0) | 2016.10.30 |
Comments