반응형
codeigniter URL > index.php 제거
출처:
http://ci4doc.cikorea.net/general/urls.html#index-php
기본적으로 URL은 index.php를 포함
example.com/index.php/news/article/my_article
Apache web server
mod_rewrite 모듈이 활성화 되어 있다면 .htaccess을 이용하여 index.php 제거
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
NGINX
location / {
try_files $uri $uri/ /index.php$is_args$args;
}
'CI4' 카테고리의 다른 글
[코드이그나이터] 웹 페이지 캐싱(caching) (0) | 2020.09.02 |
---|---|
[코드이그나이터] 헬퍼(Helper) (0) | 2020.09.02 |
[코드이그나이터] configuration 파일 (0) | 2020.09.02 |
[코드이그나이터] Service (0) | 2020.09.01 |
[코드이그나이터] 파일 오토로드(autoload) (0) | 2020.09.01 |