InterviewSolution
Saved Bookmarks
| 1. |
What is CORS and how it is enabled in Slim Framework? |
|
Answer» CORS or Cross-Origin RESOURCE Sharing is a middleware that implements resource sharing across the origin. In Slim application, CORS is implemented through Access-Control-Allow-Origin header. The best WAY to enable CORS is by USING the cors-middleware PACKAGE. |
|