我有一个用 Laravel 开发的网站。
问题:
我有一个路由方法(POST)
Route::post('/profile/edit/save', 'ProfileController@save');
如果我输入这个 url "mywebsite.com/profile/edit/save" 我得到一个错误 Symfony \ Component \ HttpKernel \ Exception \ MethodNotAllowedHttpException
我的 .env 文件:
APP_NAME=Laravel
APP_ENV=production
APP_DEBUG=false
APP_LOG_LEVEL=debug
APP_URL=http://localhost
在我的服务器上运行此代码时出现此错误,在本地主机中我没有收到任何错误。
我已经清除了缓存,但它不起作用
我怎么解决这个问题?