我正在使用YAF Framework并希望通过使用用户名来使用户的个人资料链接对用户友好,如果用户名是abdelhady
,那么我希望网址为:
www.mysite.com/abdelhady
当然会回到这样的事情:
www.mysite.com/profile/get/username/abdelhady
我尝试过类似的东西,但它不起作用:
$config = array(
"community" => array(
"type" => "rewrite",
"match" => "/:username",
"route" => array(
'controller' => "profile",
'action' => "get",
)
)
);
Yaf_Dispatcher::getInstance()->getRouter()->addConfig(
new Yaf_Config_Simple($config));
只有当我使用像"match" => "/profile/:username",
这样的匹配时它才有效,但它不是我想要的项目。你有什么建议吗?