Laravel Cors (Middleware NOT working)

后端 未结 8 1505
孤独总比滥情好
孤独总比滥情好 2020-12-31 12:37

I recently tries enabling CORS in Laravel 5.4 but unfortunately it doesn\'t want to work. I have included the code and the error that it\'s giving me below. Can anyone help

8条回答
  •  小鲜肉
    小鲜肉 (楼主)
    2020-12-31 13:13

    You can do it easily by adding headers in bootstrap/app.php

    header('Access-Control-Allow-Origin: *');
    header('Access-Control-Allow-Methods: *');
    header('Access-Control-Allow-Headers: *');
    

提交回复
热议问题