How to replace URL “ ” by “-” or “_”?

此生再无相见时 提交于 2019-12-04 12:19:09

Well, nothing strange since Yii use urlencode to encode url parameters.

First approach

You could handle this in your model, e.g. :

public function getUrl()
{
  return Yii::app()->createUrl('/model/view', array(
    'id'=>str_replace(' ', '-', $this->id),
  ));
}

Don't forget to :

  • replace model with the name of your model,
  • use this method to get your model url,
  • modify your view action in your controller :

    public actionView($id)
    {
        $id = str_replace('-', ' ', $id);
        // .....
    }
    

Second approach

You could use your own CUrlRule class :

http://www.yiiframework.com/doc/guide/1.1/en/topics.url#using-custom-url-rule-classes

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!