Symfony2 FosRestBundle 根 api url
Symfony2 FosRestBundle root api url
我一直在查看 FOS-Rest-Bundle 文档以开发我的 API。问题是我希望 API 在 api/ 下,但似乎没有任何选择可以实现这一点。
有办法吗?我该怎么做?
谢谢
您可以在路由中添加前缀。
参见 http://symfony.com/doc/current/book/routing.html#prefixing-imported-routes
例如:
api_rest:
type: rest
prefix: /api
resource: "@MyBundle/Resources/config/rest_routes.yml"
我一直在查看 FOS-Rest-Bundle 文档以开发我的 API。问题是我希望 API 在 api/ 下,但似乎没有任何选择可以实现这一点。
有办法吗?我该怎么做?
谢谢
您可以在路由中添加前缀。 参见 http://symfony.com/doc/current/book/routing.html#prefixing-imported-routes
例如:
api_rest:
type: rest
prefix: /api
resource: "@MyBundle/Resources/config/rest_routes.yml"