使用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/';
答案 0 :(得分:0)
将您的基本网址更改为:
$base_url = 'http://localhost/PROJECTNAME/';
此处“PROJECTNAME”是您的项目目录。
答案 1 :(得分:0)
更改你的base_url变量:
$base_url = 'http://localhost/other/';
其中&#34;其他&#34;是项目文件夹
答案 2 :(得分:0)
将您的基本网址更改为:
$base_url = '/';