0

/作業するルートとルートを作成する必要があり/todayます。この方法で試しました:

Route::get('/{home}', function()
    {
        return View::make(...);
    })->where('home', '$^|null||today');

には機能しますが、には機能し/todayません/。また、このように試してみました: |todaytoday|など&^|today..何も機能していないようです:) 助けてくれてありがとう:)

4

2 に答える 2

0

これは私のために働いています:

Route::get('/{home}', function($home)
{
  return View::make('hello');
})->where('home','^(today|)');
于 2013-05-22T16:10:11.090 に答える