thinkphp如何根据域名跳转到其他目录页面?
thinkphp重定向方法可以实现页面重定向(跳转)功能。
重定向方法的语法如下:
$this->redirect(stringurl,arrayparams,intdelay,stringmsg)
参数说明:
parameter
description
url
必须是重定向的url表达式。
params
可选,其他url参数。
delay
可选,重定向延迟,以秒为单位。
msg
可选,重定向提示信息。
thinkphpredirectinstance
在index模块的index方法中,重定向到该模块的select操作:
classindexactionextendsaction{
publicfunctionindex(){
$this->redirect(“select”,array(“status”=>1),3,“pagejump~”)
]}//直接重定向,不带延迟
$this->redirect(“select”,array(“status”=>1))
//延迟跳转,但不带参数,输出默认提示
$this->redirect(“select”,“,3)]//重定向到其他模块操作
$this->redirect(“public/login”)//重定向到其他组
$this->redirect(“adminpublic/login”)
原文标题:域名怎么绑定到服务器 thinkphp如何根据域名跳转到其他目录页面?,如若转载,请注明出处:https://www.tzjingsheng.com/news/53472.html
免责声明:此资讯系转载自合作媒体或互联网其它网站,「豪运号」登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述,文章内容仅供参考。