基本路由:
Route::get(‘/‘, function () {
return view(‘welcome‘);
});
Route::post(‘/‘, function () {
return view(‘welcome‘);
});
路由前缀:
Route::group([‘prefix‘=>‘wechat‘],function (){
Route::get(‘/‘,function (){
return ‘wechat根目录‘;
});
});
原文:http://www.cnblogs.com/xj76149095/p/5969226.html