# 路由基础
## 介绍
在Lolly框架下,要访问一个页面,我们需要配置路由。
## 路由配置
配置单个路由:
~~~
$lolly->route('/','index');
~~~
配置多个路由:
~~~
$lolly->routeList({
'/' => 'index',
'/hello' => 'hello'
});
~~~
直接读取route.php配置文件
~~~
$lolly->routeConf();
~~~
仅仅配置了路由还不够,因为程序并不知道当页面被访问时需要做什么:
一个完整的例子,当根目录被访问时,页面输出"hello world"
~~~
$lolly->route('/','index');
function index(){
return 'hello world';
}
~~~