method1 から method2 にリダイレクトしたい 2 つのメソッドを持つコントローラーがあると仮定しますが、次のエラーのためにリダイレクトできません。
クロム:Error 310 (net::ERR_TOO_MANY_REDIRECTS): There were too many redirects.
ファイアフォックス:The page isn't redirecting properly
どうすればこれを修正できますか?
class Site extends CI_Controller {
function method1() {
{ ... Some Code ... }
redirect('site/method2');
}
function method2() {
{ ... Rest of the code ... }
}
}