1 apache의 httpd.conf 파일 수정
#LoadModule rewrite_module 모듈/mod_rewrite.so
앞의 #을 제거하세요
2 프로그램 디렉토리에서 .htaccess 파일을 찾으세요
내용은 다음과 같습니다
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.* )$ /index.php/$1 [L]
저장하고 다시 시작하세요
위 내용은 관련 내용을 포함하여 URL에서 index.php를 제거하는 CI 프레임워크 방법을 소개하고 있으니 PHP 튜토리얼에 관심이 있는 친구들에게 도움이 되길 바랍니다.