【发布时间】:2020-04-17 23:40:00
【问题描述】:
我的 laravel 返回 404 页面未找到除“/”之外的所有页面。 以下是我的路线。
Route::get('/', function () {
return view('welcome');
});
Route::get('/hello', function () {
return '<h1>Hello World</h1>';
});
这是我的网址
http://localhost/cultural-heritagedp/public/hello
【问题讨论】:
标签: laravel http-status-code-404