I have problem with css file in CodeIgniter framework. In my autoconfig file I load url and html helper. In view I have code:
<?php echo link_tag('application/assets/css/style.css')?>
but this code doesn't work. In config file my base_url is http://localhost/CI
. My directory structure is
-application -assets -css -views -partials -home I try
<link rel="stylesheet" type="text/css" href="<?=base_url()?>application/assets/css/style.css"/>
or
<link rel="stylesheet" type="text/css" href="<? echo base_url('application/assets/css/style.css')?>"/>
but this also doesn't work.