30
URL에서 index.php를 제거하는 CodeIgniter
내 현재 URL은 다음과 같습니다 [mysite]index.php/[rest of the slug]. 이 URL 을 제거하고 싶습니다 index.php. mod_rewrite내 apache2 서버에서 활성화되어 있습니다. 에서 config,$config['index_page'] = ''; 내 codeignitor 루트 .htaccess파일에 RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule .* index.php/$0 [PT,L] 그러나 여전히 작동하지 않습니다. 내가 어디로 잘못 가고 있니?