0

私はlaravelをインストールし、ホームページを取得しましたlocalhost/laravel/public。しかし、単純なルーティングを行うことはできません。

Route::get('/', function()
{
    return View::make('hello');
});

Route::get('authors',function()
{
    return View::make('hello');
});

ここで、 で同じビューを呼び出していますlocalhost/laravel/public/authors。しかし、私は404を取得しています。

私は別の見方をしています/が、そうではありませんauthors

Route::get('/', function()
{
    return View::make('authors');
});

Route::get('authors',function()
{
    return View::make('authors');
});

今、私は著者の見解を取得しています/が、ではありませんauthors

ありがとう

4

1 に答える 1

1

にアクセスできる場合は、ファイルに追加する/laravel/public/index.php/authors必要があります。つまり、Apache を実行していると仮定します。RewriteBase.htaccess

RewriteEngine on
RewriteBase /laravel/public
<other rules go here>
于 2013-10-18T05:19:38.040 に答える