mywebsite.com
,但我想将其主页更改为mywebsite.com/darthmaul
我不能在我的路线文件中这样做,因为我必须修改我的所有路线。更改"/"
路线对我不起作用:
Route::get('/'){
return Redirect::to('http://www.anotherpage.com');
}
//otherwise mywebsite.com/darthmaul will be my main page
Route::get('darthmaul', function()
{
return View::make('pages.login');
});
任何想法,我应该在哪里检查?
提前致谢。
答案 0 :(得分:2)
Route::group(['prefix' => 'darthmaul'], function()
{
// put your routes here
});