微信域名防封跳转源码 thinkphp如何根据域名跳转到其他目录页面?
thinkphp如何根据域名跳转到其他目录页面?
ThinkPHP重定向方法可以实现页面重定向(跳转)功能。
重定向方法的语法如下:
$this->redirect(string URL,array params,int delay,string MSG)
参数说明:
Parameter
Description
URL
必须是重定向的URL表达式。
Params
可选,其他URL参数。
Delay
可选,重定向延迟,以秒为单位。
MSG
可选,重定向提示信息。
ThinkPHP redirect instance
在index模块的index方法中,重定向到该模块的select操作:
class indexaction extends action{
public function index(){
$this->redirect(“select”,array(“status”=>1),3,“page Jump~”)
]}//直接重定向,不带延迟
$this->redirect(“select”,array(“status”=>1))
//延迟跳转,但不带参数,输出默认提示
$this->redirect(“select”,“,3) ]//重定向到其他模块操作
$this->redirect(“public/login”)//重定向到其他组
$this->redirect(“admin public/login”)
微信域名防封跳转源码 微信域名防红跳转生成 微信跳转短网址生成
版权声明:本文内容由互联网用户自发贡献,本站不承担相关法律责任.如有侵权/违法内容,本站将立刻删除。