我有两个规则。一个规则与API端点有关,而另一条规则则与其他所有东西有关。
fos_rest:
param_fetcher_listener: force
view:
view_response_listener: true
exception:
exception_controller: 'fos_rest.exception.controller:showAction'
codes:
Doctrine\ORM\EntityNotFoundException: 404
format_listener:
rules:
- { path: ^/api, prefer_extension: true, fallback_format: json, priorities: [ json ]}
- { path: '^/', priorities: [ 'html', '*/*'], fallback_format: ~, prefer_extension: true }
我希望仅将“ exception_controller”应用于REST API规则。 现在,这两个规则都适用。
预先感谢您的回答。