-1

This is the original URL in my project

http://www.example.com/index.php?r=profile/publicProfile&name=CompanyName

But I want to rewrite the URL look like

http://www.example.com/CompanyName

And, I need to rewrite the URL only for above URL. No need to rewrite all URLs in the project.

4

1 に答える 1

1

これを読む必要があります: http://www.yiiframework.com/doc/guide/1.1/en/topics.url

Yii の URL 管理は非常に便利です。単純に urlManager の設定を変更してみてください。

'urlManager'=>array(
  'urlFormat'=>'path',
  'showScriptName'=>false,
  'rules'=>array(
    .....
    // AFTER other rules
    '<name>' => 'profile/publicProfile',

.htaccessサーバーで書き換えを有効にするファイルを作成することを忘れないでください: http://www.yiiframework.com/doc/guide/1.1/en/topics.url#hiding-x-23x

于 2013-05-28T10:03:39.583 に答える