gpt4 book ai didi

php - URL 在 URL 中编码一个点 (.)?

转载 作者:可可西里 更新时间:2023-11-01 00:36:14 26 4
gpt4 key购买 nike

目前我正在 symfony 中做一个小代码,它将导致 url 具有这样的资源:

http://url/val/abc.abxhd

I was able to get the parameter abc successfully from http://url/val/abc, but when I try to run the URL of http://url/val/abc.abxhd. Symfony simply throw a 404 error.

What could be the problem here. the URl are written using rawurlencode also.

group:
url: /group/:group
param: {module: group, action: show}
requirements:
sf_method: [get]

最佳答案

实际上 symfony 正在寻找点 (.) 作为段分隔符。这就是为什么在我的情况下它找不到路线的原因。在将 ff 添加到我的路线之后。它像预期的那样工作:

group:
url: /group/:group
param: {module: group, action: show}
requirements:
sf_method: [get]
options:
segment_separators: [/]

关于php - URL 在 URL 中编码一个点 (.)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7010630/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com