fedecarg / apify-library

Apify is a small open source library that delivers new levels of developer productivity by simplifying the creation of RESTful architectures. It helps development teams deliver quality web services and applications in reduced amounts of time. If you are familiar with the Zend Framework, then you already know how to use Apify.
http://www.apifydoc.com
Other
265 stars 49 forks source link

Configuración del .htaccess #19

Open ghost opened 11 years ago

ghost commented 11 years ago

Tengo el prototipo en la siguiente url de ejemplo http://mihost.com/projects/api

Por otro lado, no he conseguido que responda con url amigables, y estoy seguro que mi mod_rewrite modulo esta activado

LucasNevesAraujo commented 11 years ago

Trate de poner la dirección URL basada en la configuración del router. ejemplo:

$routes [] = new Route('/projects/api', array (
  'controller' => 'index',
  'action' => 'index'
));

(Perdón, traducción de Google)