当前在symfony4上,我遇到此错误
我的路线
docker run -d --ulimit nofile=98304:98304 ...
答案 0 :(得分:0)
正则表达式转义不正确,请尝试以下操作:
property.show:
controller: "App\\Controller\\PropertyController::show"
path: "/biens/{slug}-{id}"
requirements:
id: \d+
slug: "[a-z0-9\\-]*"