class MyBase extends BaseController
{
public function initialize()
{
parent::initialize(); // TODO: Change the autogenerated stub
if(input('is_intercept') == true){
return $this->redirect('http://www.slong.ink', 302);
}
}
// 重定向
public function redirect(...$arg) {
throw new \think\exception\HttpResponseException(redirect(...$arg));
}
}
版权属于:
小破孩
作品采用:
《
署名-非商业性使用-相同方式共享 4.0 国际 (CC BY-NC-SA 4.0)
》许可协议授权
评论