i can't access base_url/controller/method without index.php, i try to remove index.php using .htaccess but still not working.
404 Page Not Found
but my another project is working with same setting in same xampp
this is my config.php
$config['base_url'] = 'http://localhost/sistem-informasi-bimbel/';
$config['index_page'] = '';
$config['uri_protocol'] = 'REQUEST_URI';
this is my routes.php
$route['default_controller'] = 'main/home';
$route['404_override'] = '';
$route['translate_uri_dashes'] = TRUE;
this is my .htaccess file, i put it outside application folder
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
mod rewrite is enable on httpd.conf
LoadModule rewrite_module modules/mod_rewrite.so
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…