#%RAML 0.8
title: microrest.php Example API
version: v1
baseUrl: http://foo.domain/api
mediaType: application/json
/items:
displayName: Items
get:
description: Retrieve one or more items.
responses:
200:
post:
description: Creates one or more items
response:
201:
/{id}:
get:
description: Retrieve one or more items.
responses:
200:
on http://foo.domain/api I have error: HttpErrpr#404
on http://foo.domain/ I have text "Sorry, the page you are looking for could not be found." and error.log with
Hi I have a trouble with installing microrest.php application on server
My code and configuration:
index.php
conposer.json
my directory list
api.raml
httpd.conf
on http://foo.domain/api I have error: HttpErrpr#404 on http://foo.domain/ I have text "Sorry, the page you are looking for could not be found." and
error.log
withWhat am I doing wrong?