@jeromy_ruecker Чтобы убрать index.php из URL в Codeigniter Вы можете:
В config.php установить index_page как пустую строку:
1
|
$config['index_page'] = "" |
И в .htaccess файле добавить:
1 2 3 4 5 |
RewriteEngine on RewriteCond $1 !^(index\.php|resources|robots\.txt) RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ index.php/$1 [L,QSA] |