|
<?php
// +----------------------------------------------------------------------
// | ThinkPHP [ WE CAN DO IT JUST THINK ]
// +----------------------------------------------------------------------
// | Copyright (c) 2006~2018 http://thinkphp.cn All rights reserved.
// +----------------------------------------------------------------------
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
// +----------------------------------------------------------------------
// | Author: liu21st <liu21st@gmail.com>
// +----------------------------------------------------------------------
use think\facade\Route;
Route::pattern([
'name' => '\w+',
'id' => '\d+',
'order_id' => '\d+',
]);
Route::get('think', function () {
return 'hello,ThinkPHP6!';
});
Route::get('hello/:name', 'index/hello');
Route::get('sale_seller/index', 'sale_seller/index');
Route::rule('sale_seller/save/[:id]', 'sale_seller/save');
Route::rule('sale_order/item/:order_id', 'sale_order/item');
|