30 lines
1.1 KiB
PHP
30 lines
1.1 KiB
PHP
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | ThinkPHP [ WE CAN DO IT JUST THINK ]
|
|
// +----------------------------------------------------------------------
|
|
// | Copyright (c) 2006~2016 http://thinkphp.cn All rights reserved.
|
|
// +----------------------------------------------------------------------
|
|
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
|
|
// +----------------------------------------------------------------------
|
|
// | Author: liu21st <liu21st@gmail.com>
|
|
// +----------------------------------------------------------------------
|
|
|
|
return [
|
|
|
|
'__pattern__' => [
|
|
'name' => '\w+',
|
|
'id' => '\d+',
|
|
'uid' => '\d+',
|
|
],
|
|
|
|
'__domain__' => [
|
|
'helper.demos.uzchain.tech' => 'index',
|
|
'm.helper.demos.uzchain.tech' => 'mobile',
|
|
'console.helper.demos.uzchain.tech' => 'system',
|
|
'api.helper.demos.uzchain.tech' => 'openapi',
|
|
'*' => 'index',
|
|
],
|
|
|
|
// 'u/:uid' => ['user/index', ['domain' => 'm.helper.cnskl.com']],
|
|
]; // 'new/:id','News/read',);
|