0

Everything that is written with base_url() is not loading in 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">

There are in:

wamp -> www -> other -> css/img

My base_url is:

$base_url = 'http://localhost/';
Donald Duck
  • 8,409
  • 22
  • 75
  • 99
prezli
  • 131
  • 1
  • 2
  • 10

3 Answers3

0

Change your base url to this:

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

Here "PROJECTNAME" is your project directory.

Anshul
  • 116
  • 1
  • 10
0

Change your base_url variable like this:

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

where "other" is the project folder

codemirror
  • 3,164
  • 29
  • 42
0

Change your base url to this:

$base_url = '/';
Artur
  • 101
  • 2