Codeigniter重定向()和标题[重复]

This question already has an answer here:

After i used form submit my controller make this operation (pseudocode):

form_open('wpis/dodaj','name="form"')
->
wpis (controller)
->
dodaj()
->
[operation with model]
$this -> load -> view('layouts/main')

Works fine but address bar is still www.mysite.com/wpis/dodaj. When i'm using

$this -> load -> view('layouts/main')
redirect() or redirect('mvc')

i get

headers already sent error

How can i run controller mvc in dodaj function, in wpis controller? MVC is my default controller.

</div>

You don't want to load the view. Only redirect to 'mvc'. Then in 'mvc' controller you have the code to handle this redirection, and load the view.