Redirecting a url with urlManager in yii1.1

40 Views Asked by At

I'm trying to redirect the following url structure in Y1.1 /info/#/[string] to /site/info?value=[string]

I tried

 'urlManager'=>array(
        'urlFormat'=>'path',
        'showScriptName'=>false,
        'rules'=>array(
  'info/#/<value:\w+>' => 'site/info',

And that didn't work at all

0

There are 0 best solutions below