* [ ] 路由别名
```
SetAlias($NewName, $OldName = null, $Type = '');
```
NewName(string|array):访问路由别名
OldName (string|null):指向路由名(类和方法名)
Type (string|null):支持访问模式(多个半角逗号分开)`为空默认配置中的路由方式`
*****
```
// 当通过 index/qq 就会访问到 index/main,只支持 GET 和 POST 访问
$Obj->SetAlias('index/qq', 'index/main', 'GET,POST');
// array 写法,一次性定义多个路由别名
// ['访问路由别名' => ['指向路由名', 访问模式], '访问路由别名' => ['指向路由名', 访问模式]]
$Obj->SetAlias( [
// 只允许 post 请求
'main' => ['index/main', 'POST'],
// 允许 get 、post 请求,本来直接访问 a/b/c 是只能 post 请求,定义这个,aa就可以直接 get 请求到
'aa' => ['index/aa', 'GET,POST'],
] );
```
- 开始使用
- 配置文件
- 路由模式
- AutoLoad类
- 启动文件
- __construct
- SetRouting
- SetAlias
- SetStop
- SetError
- Access
- SetWorker
- SetClassFile
- SetClassDir
- Run
- OpenLoad
- LinuxStartAll
- Session类
- 使用说明
- set
- get
- delete
- pull
- has
- id
- Cookie类
- 使用说明
- set
- get
- delete
- pull
- has
- TempLets类
- 模板语法
- 模板标签
- html
- show
- assign
- obtain
- Request类
- get
- post
- host
- referer
- getip
- localip
- header
- body
- file
- scheme
- protocolversion
- uri
- path
- querystring
- method
- Response
- SendFile
- FileStream
- SendData
- SetStatus
- SetHead
- SetMime
- WebSend
- redirect
- dumpJson
- dump
- come
- ps
- Frame类
- GetWeb
- ViewFile
- RoutingData
- SetClassFile
- SetClassDir
- GetMime
- FileMime
- LoadDir
- StartDir
- IsJson
- ArrJson
- JsonFormat
- ObStart
- GetConfig
- ConfigDir
- TempDir
- GetRunData
- GetStatic
- IsDebug
- SetDebug
- GetDebugInfo
- GlobalVariables类
- 使用说明
- set
- get
- delete
- pull
- has
- id
- Mysql类
- 新版本
- 第三方
- Thinkorm
- Medoo
- 旧版本
- Mysql 配置格式
- 项目中操作数据库
- 项目场景
- 项目数据库配置
- 项目数据库中间类
- 项目中操作数据表
- 连贯操作
- where
- table
- data
- order
- field
- limit
- page
- group
- having
- join
- tabname
- union
- sql
- link
- link_base
- lock
- CURD 操作
- 写入数据
- 数据删除
- 数据查询
- 数据更新
- 数据统计操作
- count
- sum
- max
- min
- avg
- 操作DEMO
- CurdTrait.php
- 项目Model层操作表.md
- Curl类
- Method类
- SslAes类
- layui_zqadmin