ThinkCMF的跳转303 404等页面的方法

  1. 控制器方法:

  

  return $this->redirect('http://www.thinkcmf.cmf',[],301);

  或者助手函数:

   

  return redirect('http://www.thinkcmf.com',[],301);

  2.本站重定向,用法和url方法类似:

    return redirect('应用名/控制器/方法名',你的参数,301)

    如:

     

 return redirect ('portal/Index/index',['id'=>1],301)

人生得意须尽欢,莫使金樽空对月.
原文地址:https://www.cnblogs.com/luojie-/p/7428705.html