image - Style CSS does not With CodeIgniter - Baseurl -
this question has been asked several times, have not found right answer work on project.
my css file liking
<link rel="stylesheet" type="text/css" href="assets/css/style.css"/>
the css file in:
-main_directory -application -assets -css -style.css -system
i tried link css using base_url href="<?php echo base_url('assets/css/style.css');?>"
doesn't work me.
so problem? can help?
your structure should this
myproject application assets css style.css system
autoload url helper in config/autoload.php
$autoload['helper'] = array('url');
now
<link href = '<?php echo base_url()?>/assets/css/style.css'>
this should work. make sure spellings correct , see casd sensitive issue if using linux.
Comments
Post a Comment