LoginSignup
2
2

More than 5 years have passed since last update.

Laravel5でroute(web.php)を正しく設定してもNot foundになる場合の対処法

Posted at
Route::get('/dir', function () {
    return view('welcome');
});

で、http://sample.jp/dir
としても、Not foundになることがある。

その場合は、httpd.confを編集してApacheを再起動する。

たとえば、公開ディレクトリのパスが

/home/laravel/public

の場合は、

<Directory "/home/laravel">
    #AllowOverride None
    AllowOverride All
</Directory>

<Directory "/home/laravel/public">
    # AllowOverride None
    AllowOverride All
</Directory>

とする。

2
2
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
2
2