在yii URL管理器中更改友好URL的规则

时间:2014-08-06 07:09:25

标签: url yii url-rewriting yii-url-manager

我有一个需要两个参数的控制器

 public function actionIndex($type = 'recent-jokes',$offset = 0)
 // rest of codes

我希望网址如下所示,以便从网址

获取参数

something.com/items/type/offset

现在这是我在main.php中的配置

 'rules'=>array(
    ''=>'items/index',
    '<controller:\w+>/<action:\w+>/<id:\w+>'=>'<controller>/<action>',
    '<controller:\w+>/<action:\w+>'=>'<controller>/<action>',
),
你可以帮帮我吗:) 非常感谢这个令人敬畏的社区

1 个答案:

答案 0 :(得分:1)

 'rules'=>array(
    'items/<type:\w+>/<offset:\w+>' => 'items/index',
    /* other rules */
  ),

你去。

相关问题