php中如何使用_redirect()

2024-11-18 15:24:17
推荐回答(2个)
回答1:

首先redirect不是php内置的函数。而是thinkphp框架里的

点击函数可以看到最终是:

header('Location: XXX/');的过滤


使用方法可以查看手则


// 跳转到 edit 操作   

$this->redirect('edit');  

// 跳转到 UserAction下的edit 操作   

$this->redirect('User/edit');  


// 跳转到 Admin分组默认模块默认操作  

$this->redirect('Admin/');


回答2:

$this->_forward('registercomplete','account')

$this->_redirect('/account/registercomplete');