0

Here is the code please check what's wrong i did

$config['base_url'] = 'http://'.$_SERVER['HTTP_HOST'].'/e-biotech/';
@define(SITEURL,$config['base_url']);
Danyal Sandeelo
  • 12,196
  • 10
  • 47
  • 78

1 Answers1

0

Just remove @define(SITEURL,$config['base_url']);

Config.php

$config['base_url'] = 'http://'.$_SERVER['HTTP_HOST'].'/e-biotech/';

Now in your view file

you can sue site_url() as below

<head>
        <base href="<?= site_url() ?>">

And your assets will load perfectly

Devsi Odedra
  • 5,244
  • 1
  • 23
  • 37