Laravel改变主页链接

时间:2015-12-10 14:36:47

标签: php laravel

  1. 我的地址有mywebsite.com,但我想将其主页更改为mywebsite.com/darthmaul
  2. 我不能在我的路线文件中这样做,因为我必须修改我的所有路线。更改"/"路线对我不起作用:

    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');
    });
    
  3. 任何想法,我应该在哪里检查?

    提前致谢。

1 个答案:

答案 0 :(得分:2)

Route::group(['prefix' => 'darthmaul'], function()
{
    // put your routes here
});