I have this on my $route on CI
$route['(:any)'] = 'main/index/$1';
$route['default_controller'] = 'main/index';
$route['404_override'] = '';
$route['translate_uri_dashes'] = FALSE;
I also downloaded a bootstrap theme from startbootstrap and i moved
css, fonts, images, js
Into the root,where application folder resides
So the problem is that codeigniter reads 'css' as a controller so the views can't access the css.
I am also watching a tutorial on how to integrate it. [Integrate a Bootstrap Template into Code Igniter Learning Basics of MVC Frameworks][1]
From the point where he added htaccess on the root i keep having this error,
Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator at admin@example.com to inform them of the time this error occurred, and the actions you performed just before this error.
More information about this error may be available in the server error log.
Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator at admin@example.com to inform them of the time this error occurred, and the actions you performed just before this error.
More information about this error may be available in the server error log.
I am searching through the comment section of that video and am trying to remedy it but i don't wanna do anything drastic since it may ruin my set up or any unwanted errors.
Or perhaps is there any other way i can access the css from the view?