Symfony2 MethodNotAllowedHttpException on live server

后端 未结 3 1211
一整个雨季
一整个雨季 2021-01-18 02:36

I am getting below error on live server:

request.ERROR: Uncaught PHP Exception Symfony\\Component\\HttpKernel\\Exception\\MethodNotAllowedHttpExcept

3条回答
  •  悲&欢浪女
    2021-01-18 03:09

    It's because you have to call you route with "POST method. Try to remove @Method("POST") in you controller or Add GET with @Route("GET","POST"). Documentation

    Or try this following command :

    php app/console cache:clear -e prod
    

    Otherwise, delete app/cache folder.

提交回复
热议问题