错误,$ this-> url(array(),'home');生成一个像http /// home
这样的链接您好,
我在application.ini文件中创建了一个自定义路由,如下所示:
resources.router.routes.home.route = / home
resources.router.routes.home.defaults.module = default
resources.router.routes.home.defaults.controller = index
resources.router.routes.home.defaults.action = index
在我的主布局中,我想写一个链接到我的主页,如下
<a href="<?php echo $this->url(array(), 'home'); ?>">Home</a>
但我加入了生成的html文件,
http///home
,有人可以帮助我获取此格式/home
或http//example.com/home
的网址吗?
感谢
答案 0 :(得分:0)
$this->baseUrl('/home');
应该有效