Good Morning
I am new to the community I was looking for a framework that would help me in the creation of a restfull api I created a new project called api using the following command:
composer.phar create-project slim / slim-skeleton: dev-master api
Composer performed all the necessary operations successfully, the project was created within the publishing directory of my apache when accessing http: //localhost/api/public/index.php I am receiving the following error:
{
“statusCode”: 405,
“error”: {
“type”: “NOT_ALLOWED”,
“description”: “Method not allowed. Must be one of: OPTIONS”
}
}
I checked the path is correct for the file could someone help me understand what is this error?
I already released the apache mod_rewrite I’m not sure what is missing.