这是我项目中的原始网址
http://www.example.com/index.php?r=profile/publicProfile&name=CompanyName
但我想重写URL看起来像
http://www.example.com/CompanyName
而且,我只需要为上面的URL重写URL。无需重写项目中的所有URL。
答案 0 :(得分: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