I tried many ways to remove index.php in my project. here's ways
here is my route file
$route['default_controller'] = 'auth/login';
$route['signin'] = 'auth/login';
$route['404_override'] = '';
$route['translate_uri_dashes'] = FALSE;
this is my htacess file
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule .* index.php/$1 [PT,L]
In config file
<Directory "C:/xampp2/cgi-bin">
AllowOverride All
Options None
Require all granted
</Directory>
Still index.php needed. what can i do for remove this ?