我尝试使用createUrl()
方法制作标题链接。
我有子域'帐户'。
当我使用$this->createUrl('account/default/index')
时,它的工作正确。
但是,当我找到http://account.example.com到http://example.com/about时,我希望创建链接。
我可以使用createUrl()
吗?
答案 0 :(得分:0)
尝试使用您的规则制作路线:
'http://site.com/<controller:\w+>/<action:\w+>' => 'site/<controller>/<action>'
比创建网址http://site.com/about
使用Yii::app()->request->createUrl('site/about/index')