I’ve setup ion_auth authentication library, even though it’s not part of the codeigniter codebase I think my question is kida generic, must be related to sessions or something.
My problem is that I’m getting a 404 related to anything from my css until I’m logged in.
I’ve tried to put my css in a [document root]/css folder and point to it by either css/style.css or /css/style.css, and I’ve even tried to copy the css folder to my views/auth/ folder.
I’m new at codeigniter, I must be overlooking mabye something with my routes.php ?
My routes.php have only a few lines of code
$route['auth/(:any)'] = 'auth/$1';
$route['(:any)'] = 'pages/view/$1';
$route['default_controller'] = 'pages/view';
