CSS和图片未在Codeigniter中加载

时间:2017-02-21 18:10:47

标签: php html css codeigniter

使用base_url()编写的所有内容都未加载到Codeigniter中。

<link href="<?php echo base_url(); ?>other/css/admin/style.css" rel="stylesheet" type="text/css">
<img class="brand" src="<?php echo base_url(); ?>other/img/logo.png">

有:

  

wamp - &gt; www - &gt;其他 - &gt; CSS / IMG

我的base_url是:

$base_url = 'http://localhost/';

3 个答案:

答案 0 :(得分:0)

将您的基本网址更改为:

$base_url = 'http://localhost/PROJECTNAME/';

此处“PROJECTNAME”是您的项目目录。

答案 1 :(得分:0)

更改你的base_url变量:

$base_url = 'http://localhost/other/';

其中&#34;其他&#34;是项目文件夹

答案 2 :(得分:0)

将您的基本网址更改为:

$base_url = '/';