5
3

More than 5 years have passed since last update.

LaravelのRoute

Last updated at Posted at 2013-12-22

Laravelで地味にハマったのでメモ

Laravelのドキュメントルートはデフォルトだと

らしい。
http://laravel4.kore1server.com/docs
にならってRouteにusersを追加。


Route::get('users', function()
{
    return 'Users!';
});

とりあえずURIをたたいてみる

すると
Not Found

The requested URL /作業ディレクトリ/public/users was not found on this server.

なんでやねん\(^o^)/

調べてたらここに行き着いた
http://forums.laravel.io/viewtopic.php?pid=19860

index.phpを起動させる?的な意味でURIに入れなきゃいけないらすい
https://localhost/作業ディレクトリ/public/index.php/users

なんかかっこ悪いけど動いた。
ちなみにindex.phpを入れたくない(そもそもpublicもいらね)ってのだとなんか設定が必要っぽい
http://forums.laravel.io/viewtopic.php?id=926

とりあえずはこのままでいいかなーと思っている。

5
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
3