Awesome article on creating RESTful protocols http://bitworking.org/news/How_to_create_a_REST_Protocol
How to create a REST Protocol
Reply
Awesome article on creating RESTful protocols http://bitworking.org/news/How_to_create_a_REST_Protocol
Say you have an application and you want entire modules or just a controller to be treated and follow the RESTful ways you can do following in your bootstrap.php:
As you can see the 3th argument of `Zend_Rest_Route` will set “module”, or “module” => “controller”. Quite useful if you have an api module you want to treat as RESTful, or maybe a controller in a specific module used for some ajax stuff.