İşte benim özel bir konudur. Ben o altında size hangi yöntemi seçebilirsiniz bir API düzeyde yapmak istiyoruz. Örneğin:
test.com / api / dinlenme
test.com / api / xmlprc
Currently I have api mapping to a module directory. I then setup a route to make it a rest route. test.com/api is a rest route, but I would rather have it be test.com / api / dinlenme. This would allow me later to add others.
Bootstrap.php in:
$front = Zend_Controller_Front::getInstance();
$router = $front->getRouter();
$route = new Zend_Controller_Router_Route(
'api/:module/:controller/:id/*',
array('module' =>'default')
);
$ Router-> addRoute ('api', $ yol);
$restRoute = new Zend_Rest_Route($front, array(), array( 'rest' )); $router->addRoute('rest', $restRoute);
$ yönlendirici dönmek;
Application.ini in:
resources.frontController.moduleDirectory = APPLICATION_PATH "/modules"
Ben o yolları içerecektir biliyorum, ama bazen Zend Framework belgeleri takip etmek biraz zor buluyorum.
When I go to test.com/rest/controller/ it works how it should, but if I go to test.com / api / dinlenme/ it tells me that my module is api and controller is rest.