美文网首页
微擎模板路由

微擎模板路由

作者: StevenQin | 来源:发表于2019-04-24 12:41 被阅读0次
    • 前端app目录渲染模板

    MVC 模式
    http://mall.raycare.net/app/index.php?i=5&c=entry&do=index&m=health_moniter

    public function doMobileIndex() {
            //这个操作被定义用来呈现 功能封面
            global $_W,$_GPC;
            include $this->template('index');
            echo IA_ROOT."<br/>";
            echo MODULE_URL."<br/>";
            echo $_GPC['m']."<br/>";
            //网站的域名
            echo $_W['siteroot']."<br/>";
    //        var_dump($_W);
        }
    
    • 后台 web目录渲染模板
    • 开启开发者模式
    //data/config.php
    $config['setting']['development']=1;
    

    *创建 url路由
    https://s.w7.cc/index.php?c=wiki&do=view&id=1&list=162

    常用路由创建

      //创建前台路由
            echo $this->createMobileUrl('index')."<br/>";
            //创建后台路由
            echo $this->createWebUrl('guanli')."<br/>";
    
    ./index.php?i=5&c=entry&do=index&m=health_moniter
    ./index.php?c=site&a=entry&do=guanli&m=health_moniter
    

    相关文章

      网友评论

          本文标题:微擎模板路由

          本文链接:https://www.haomeiwen.com/subject/iliwgqtx.html