我有这个基本控制器:
class TCMS_Controller extends CI_Controller{
public function __construct(){
parent::__construct();
if( ! $this->session->userdata('logged_in')){
redirect('admin/authenticate/login');
}
//Loop to get all settings in the "globals" table
foreach($this->Settings_model->get_global_settings() as $result){
$this->global_data[$result->key] = $result->value;
}
}
}
所以我有这个基本的重定向:
如果用户未登录,则 redirect('admin/authenticate/login');
。
我也有此设置从网址中删除index.php
:
htaccess的:
Options +FollowSymLinks
Options -Indexes
DirectoryIndex index.php
RewriteEngine on
RewriteCond $1 !^(index\.php|resources|images|css|js|robots\.txt|favicon\.ico)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond ${REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L]
下一个配置设置:
$config['base_url'] = 'http://something.herokuapp.com/';
$config['index_page'] = '';
当我尝试访问具有下一个地址的管理员部分时:
http://something.herokuapp.com/admin/controller/method
如果我没有登录,我应该被重定向到login
页面:
http://something.herokuapp.com/admin/authenticate/login
但我获得了一个重定向循环
ERR_TOO_MANY_REDIRECTS
我该如何解决?
页面: http://tcms.herokuapp.com/
管理员部分:http://tcms.herokuapp.com/admin/authenticate/login http://tcms.herokuapp.com/admin/dashobard
答案 0 :(得分:1)
我确定您的admin
(如果管理员是您的文件夹名称,可能是authenticate
)控制器也会延伸TCMS_Controller
。因此,当它重定向您的admin
控制器时,它会再次执行TCMS_Controller
的构造函数,并再次重定向到导致无限循环的管理控制器。
要解决此问题,您需要创建一个Login
控制器,该控制器不扩展TCMS_Controller
只扩展CI_Controller.And如果用户没有插入,则重定向到此控制器。
答案 1 :(得分:0)
问题是在基本控制器中重定向是不好的做法,因为它可能导致重定向循环: