Recent Posts
Recent Comments
Link
«   2025/07   »
1 2 3 4 5
6 7 8 9 10 11 12
13 14 15 16 17 18 19
20 21 22 23 24 25 26
27 28 29 30 31
Tags
more
Archives
Today
Total
관리 메뉴

PK8AE

CodeIgniter index.php 없애기 본문

php/CodeIgniter

CodeIgniter index.php 없애기

pk8ae 2016. 11. 1. 21:51



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>

 


Comments