tp5页面跳转重定向
Posted zhengleilei
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了tp5页面跳转重定向相关的知识,希望对你有一定的参考价值。
三、页面跳转
1、方法存在的文件路径
TP5 hinkphplibrary raitscontrollerJump.php
成功跳转 $this->success();
失败跳转 $this->error();
2、以登录功能为例:
3、成功和失败页面的文件路径配置 application/config.php
// 默认跳转页面对应的模板文件
‘dispatch_success_tmpl‘ => THINK_PATH . ‘tpl‘ . DS . ‘dispatch_jump.tpl‘,
‘dispatch_error_tmpl‘ => THINK_PATH . ‘tpl‘ . DS . ‘dispatch_jump.tpl‘,
模板文件的路径:thinkphp pldispatch_jump.tpl
也可以自己指定模板,然后自己设计就可以
‘dispatch_success_tmpl‘ => THINK_PATH . ‘tpl‘ . DS . ‘success.tpl‘,
‘dispatch_error_tmpl‘ => THINK_PATH . ‘tpl‘ . DS . ‘error.tpl‘,、
四、重定向
五、空模块、空控制器、空方法
对于url中的恶意输入
1、空模块:在application/route.php添加
全局MISS路由
‘__miss__‘ => [‘index/Index/index‘, [‘method‘=> ‘get‘]],
2、空控制器 新建Error控制器
3、空方法
以上是关于tp5页面跳转重定向的主要内容,如果未能解决你的问题,请参考以下文章