ThinkPHP5 API路由註冊和其地址訪問
阿新 • • 發佈:2018-11-13
1、資源控制器
使用cmd命令,進入到專案的根目錄,使用完整的名稱空間生成對應的檔案
php think make:controller app\api\controller\User2
2、config.php配置檔案
// 是否開啟路由
'url_route_on' => true,
// 路由使用完整匹配
'route_complete_match' => false,
// 路由配置檔案(支援配置多個)
'route_config_file' => ['route','apiRoute'], // 對應application下的route.php 或者自己新建的 apiRoute.php
**route.php或者apiRoute.php檔案中配置介面資訊:
Route::get('index/info','api/index/getInfo');// 訪問方式 http://www.xx.com/index/info
Route::get('index/getInfo','api/index/getInfo');// 訪問方式 http://www.xx.com/index/getInfo
//Route::rule(['index/getInfo'=>'api/index/getInfo'],'','GET');