CodeIgniter 3 - IonAuth,控制器和方法而不是路由

时间:2015-08-14 17:04:33

标签: php codeigniter authentication ion

我的应用有问题。 我有登录页面,我设置路线:

$route['logowanie'] = 'Back/index/Login';

但是当我在登录时遇到错误时,我的地址设置为:      mydomain.com/Back/index/Login 的 但我想留在我的路线上 - mydomain.com/logowanie

哪里有问题?我使用IonAuth库

1 个答案:

答案 0 :(得分:0)

在您的控制器中function login()更改为:

//if the login was un-successful
//redirect them back to the login page
$this->session->set_flashdata('message', $this->ion_auth->errors());
redirect('logowanie', 'refresh');