My redirect function is not working in codeigniter?
问题 I have the following code: $this->video->videoupdate($userid, $title, $id); redirect("admin/videos", "refresh"); But the redirect is not working and I don't know why (I am using CodeIgniter) 回答1: Have you sent anything to the browser prior to calling redirect? From the user guide Note: In order for this function to work it must be used before anything is outputted to the browser since it utilizes server headers. 回答2: have you loaded the URL helper? $this->load->helper('url'); Load this in