Laravel提示The GET method is not supported for this route. Supported methods: POST.错误的解决办法
admin 阅读:19 2024-03-03
Laravel提示 The GET method is not supported for this route. Supported methods: POST. 错误,其实很简单就是配置路由的时候设置的是post,但是访问时采用的是get方式。
解决办法1:将路由改为any或者get
Route::any('index', 'IndexController@index);
解决方法2:将请求方式改为post
<form action="login.php" class="login-form" method="post">
声明
1、部分文章来源于网络,仅作为参考。 2、如果网站中图片和文字侵犯了您的版权,请联系1943759704@qq.com处理!