Files
cunkebao_v3/Server/route/route.php

24 lines
840 B
PHP
Raw Normal View History

2025-03-12 12:18:06 +08:00
<?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;
2025-03-12 12:18:06 +08:00
Route::get('think', function () {
return 'hello,ThinkPHP5!';
});
Route::get('hello/:name', 'index/hello');
// 加载Common模块路由配置
include __DIR__ . '/../application/common/config/route.php';
2025-03-12 12:18:06 +08:00
return [];