php多域名随机跳转 thinkphp如何根据域名跳转到其他目录页面?
浏览量:2944
时间:2021-04-12 04:13:48
作者:admin
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”)
//重定向到其他组
怎么打开域名/index.php和域名/index.html做301重定向跳转到域名,在线等?
如果URL包含索引.php也许索引.html跳转到域名,这些包括,跳转功能很容易找到
版权声明:本文内容由互联网用户自发贡献,本站不承担相关法律责任.如有侵权/违法内容,本站将立刻删除。