[eluser]Valdemar[/eluser]
My preferred file structure looks like:
Code:
-/
--/css
--/js
--/images
--/other-files
--/system
--/system/application/
--/system/application/.htaccess which disallows view of the application folder.
--/system/application/data which contains data loaded within my application that should not be seen by anyone.
.....
Doing so allows me to just use
Code:
<?php echo base_url()."css/main.css";?>
within my views and all's working just fine