新人求解路由规则

目录 app\Http\Controllers 下一个index的类文件
public function getIndex()
{
    //
    echo "getIndex";
}
public function getList()
{
    //
    echo "getList";
}

public function postProfile()
{
    //
     echo "postProfile";
}

有这三个方法

路由规则只有这一句
Route::controller('/','Index');

问题是:输入域名http://127.0.0.1
可以直接访问到 getIndex()方法
请问怎么写路由规则才能访顺到 getList() 和postProfile()
已邀请:

wodeipan

赞同来自:

解决了,我发现我目录绑定错了。。。

要回复问题请先登录注册