Css/images/javascript in codeigniter
Concerning this post, I'd like to add css,images and js to my codeigniter application. My question is after you add path to your header file href="<?ph开发者_如何转开发p echo base_url();?>css/moorainbow.css"
, where do you actually put your files, is it in system, application, view or controller? I found like 10 articles so far explaining the same procedure but no one is talking about where actual file should be kept? can anybody help me with this ? thank you
Ok, try two. Here is the answer for Codeigniter (instead of CakePHP... sorry!)
Put any public files in the root (same directory as the main index.php
)
index.php system/ images/ js/ css/
My reference: http://www.greggoforth.net/article/5
Refer to this, meaning you need to put css files in the same level as system, meaning your webroot. Not inside system, not inside application etc in the web root. And read from the website rest ..
精彩评论