Header redirect location not work on localhost

Hello ,
I have this if code condition on public function pageRender()

if($this->status->CurrentValue == "1" or $this->status->CurrentValue == "2") header("Location: ../MainPageList");

Well that’s work fine my host but on localhost not redirected header to the “MainPageList” , any idea ?
Thanx…

You may try, e.g. (Assume v2022)

if (...) $this->terminate(GetUrl("MainPageList"));

Wonderful , That’s much better
Thanx …