Develop/CodeIgniter

[CodeIgniter] Rewirte Rule

시크라기 2013. 7. 18. 17:01

<IfModule mod_rewrite.c>

    RewriteEngine On

    RewriteBase /


    RewriteCond %{REQUEST_FILENAME} !-f 

    RewriteCond %{REQUEST_FILENAME} !-d 

    RewriteRule ^(.*)$ index.php?/$1 [L] 

</IfModule>




application과 같은 레벨에 .htaccess 생성해서 작성해줌.

이때 아파치에서  AllowOverride 옵션이 켜져있어야함.