我现在的路由配置是
array('default/detail', 'pattern'=>'detail/onlineId=<onlineId>', 'verb'=>'GET')
url是http:xxxx/detail/onlineId=1234
如果我想把url 改成http:xxxx/detail?onlineId=1234
该怎么修改路由的配置。官网没看到怎么改。
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
array('default/detail', 'pattern'=>'detail?onlineId=<onlineId>', 'verb'=>'GET')