公共配置文件
<?php
return array(
//'配置项'=>'配置值'
'MODULE_ALLOW_LIST'=>array('Home','Admin'),
'DEFAULT_MODULE'=>'Home',
'URL_HTML_SUFFIX'=>'html',
'DEFAULT_CONTROLLER'=>'Index',
'DEFAULT_ACTION'=>'index',
'URL_MODEL'=>2,
);
跳转:$this->redirect('index/index');
成功:$this->success('跳转成功','/test/test1.html');
失败:$this->error('跳转失败','/test/test1.html');
前端页面:
<a href="/">首页</a>
<a href="/index/test.html?id={$id}">index/test</a>
<a href="/index/s.html">跳转</a>
就能得到 http://www.xxx.cn/xx/xx.html 短链接