当前位置:   article > 正文

Thinkphp5 Route用法

thinkphp5 route /:a

域名路由:domain

1.application/router.php 文件位置,吧一下代码放进去就可以了

use think\Route;
Route::domain('app.tp5a.com','app');   // 1.绑定到模块app
#Route::domain('app.tp5a.com','app/category'); //2.绑定到控制器category
#Route::domain('app.tp5a.com','app/category/test');   //3.绑定到方法test
把域名app.tp5a.com  绑定到模块 app模块

注意:要先application/config.php 开启 域名部署(url_domain_deploy => true)

 

别名路由:alias

文件位置:application/route.php 

方法一:

use think\Route;
Route::alias('test','index/index/test');

当访问xxx.com  会跳转到index/index/test

访问地址:http://tp5a.com/index.php/test   等同于  http://tp5a.com/index.php/index/index/test

 

方法二:

return [
    '__pattern__' => [
        'name' => '\w+',
    ],
    '[hello]'     => [
        ':id'   => ['index/hello', ['method' => 'get'], ['id' => '\d+']],
        ':name' => ['index/hello', ['method' => 'post']],
    ],
    '__alias__' =>  [
        'h'  =>  'index/hello',
        'test'=> 'index/index/test'
    ],
    
];

 

 

路由绑定:get

代码

Route::get('test','index/index/test');

访问  http://tp5a.com/index/test  和    http://tp5a.com/index.php/test

注意:如果是伪静态状态下 要tp5a.com/模块/方法(一定要带模块名) 

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/你好赵伟/article/detail/351315
推荐阅读