I really need help. Removed index.php from the address bar, routing stopped working. I go to site.ru/search does not work, and when to site.ru/index.php/search redirects $route['search'] = "library/search"; to the controller function $route['search'] = "library/search";
.htaccess looks like this:
RewriteEngine on RewriteCond $1 !^(index\.php|images|robots\.txt|public) RewriteCond %{REQUEST_URI} !\.(css|js|jpg|gif|png)$ RewriteRule ^(.*)$ /index.php/$1 [L]