createUrl()问题yii

时间:2013-10-30 14:59:55

标签: php yii routing

我尝试使用createUrl()方法制作标题链接。 我有子域'帐户'。

当我使用$this->createUrl('account/default/index')时,它的工作正确。 但是,当我找到http://account.example.comhttp://example.com/about时,我希望创建链接。

我可以使用createUrl()吗?

1 个答案:

答案 0 :(得分:0)

尝试使用您的规则制作路线:

'http://site.com/<controller:\w+>/<action:\w+>' => 
                                               'site/<controller>/<action>'

比创建网址http://site.com/about使用Yii::app()->request->createUrl('site/about/index')