Codeigniter – Message: Undefined property: CI_Loader::$uri

I’m using my project on localhost and I don’t get any errors. But after uploading it to the server, I get an error like this. No matter how much I searched, I couldn’t find the solution. Can you help with this?

Severity: Warning

Message: Undefined property: CI_Loader::$uri

Filename: home/header.php

Line Number: 51

Backtrace:

File: /home/sehadetm/public_html/test/application/views/home/header.php
Line: 51
Function: _error_handler

File: /home/sehadetm/public_html/test/application/views/home/anasayfa.php
Line: 1
Function: view

File: /home/sehadetm/public_html/test/application/controllers/Anasayfa.php
Line: 13
Function: view

File: /home/sehadetm/public_html/test/index.php
Line: 315
Function: require_once

header.php Line Number:51

<li class="nav-item">
   <a class="nav-link <?= $this->uri->segment(1) == "" ? "active" : ""  ?>" href="<?= base_url("") ?>"> Anasayfa </a>
</li>

autoload.php

$autoload['helper'] = array('url', 'file','function');