Route::domain('service','service/Index');service/Index.php中有三个方法class Index extends Controller{
public function index(){}
public function a(){}
public function b(){}
public function c(){}
}如果根域名为abc.com按理,如果用url('service/Index/a')应生成http://service.abc.com/a.html,但实际生成了http://service.abc.com/index/a.html
请问这是一个BUG么?还是我设置的时候有问题?
最佳答案