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']);
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']);
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