### route
> 在controller 或 model 中引入:
```
use PHPt\lib\route;
```
> 在方法中实例化:
```
$u = new route;
```
### 生成URL
* 在控制器、模型或视图中,通过$t->url()方法,可以生成绝对路径的Url。
```
URL未重写
$u -> URL("home/index/index"); // /index.php/home/index/index
URL重写后
$u -> URL("home/index/index"); // /home/index/index
```
> 开启URL重写,请在 PHPt/ourphp_config.php 配置文件中开启
> 'urlrewrite' => false, true 开启 false 关闭