我想像这样显示外部网址:
www.abc.com/username
此页面需要group_id
,ticket_id
,但我不想在外部网址中显示这些变量。
我的routing.yml
:
my_profile:
url: /:username
param: { module: profile, action: index, grp_id: GRRf3eedfb7-842d-4cbd-a17f-141334cd1b4d, ticket: UAe25d7784-7b9f-499a-8e53-57f5aee91d95, display: true }
indexSuccess.php
echo url_for('@my_profile?module=profile&action=index&username='.$username.'&grp_id='.$groupID.'&ticket='.$ticket)
请注意,routing.yml
params
中包含静态grp_id
和ticket
。它输出Nicely。
然而,我想要让它变得动态。 grp_id
和ticket
应该是动态值,并且不应在网址中显示。