0

在执行 route:cache 后访问 laravel 8 上的默认“/”路由时出现此错误

Symfony\Component\HttpKernel\Exception\MethodNotAllowedHttpException The GET method is not supported for this route. Supported methods: HEAD.

知道为什么吗?除了这条以外的所有路线都在工作:D

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

Route::middleware(['auth:sanctum', 'verified'])->get('/dashboard', function () {
  return view('dashboard');
})->name('dashboard');

甚至 api.php 路由都在工作。

在网上找不到任何解决方案。

谢谢

4

0 回答 0