Error 310 (net::ERR_TOO_MANY_REDIRECTS):

Kimberly Mullins picture Kimberly Mullins · Aug 2, 2011 · Viewed 32k times · Source

What is this error:

Error 310 (net::ERR_TOO_MANY_REDIRECTS): There were too many redirects.

I use PHP CodeIgniter and library SimpleLoginSecure, this is my code:

if ($this->session->userdata('logged_in')) {
    redirect('admin/index');
}

How can I resolve this error?

Regards

Answer

Richard H picture Richard H · Aug 2, 2011

I'm guessing you get an infinite redirect loop: you get redirected to admin/index, this same code snippet is run again, redirecting to admin/index ad infinitum. You probably want to add a check to that snippet and only do the redirect if you're NOT on the admin/index page.