YII2如何重写url来接收params

时间:2016-09-05 05:37:03

标签: php yii2

我有这样的请求网址: http://www.test.com/parse/demo.apk

如何重写此url,然后控制器ParaseController,actionIndex可以接收" demo.apk"作为一个参数?

1 个答案:

答案 0 :(得分:0)

Add the rule到UrlManager的$rules数组

'parse/<package:[a-z\.]+>' => 'parse/index'

现在actionIndex($package)成为包名$package的get参数。

Read more about Url creation in the Docs