<?php // +---------------------------------------------------------------------- // | ThinkPHP [ WE CAN DO IT JUST THINK ] // +---------------------------------------------------------------------- // | Copyright (c) 2006~2016 http://thinkphp.cn All rights reserved. // +---------------------------------------------------------------------- // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 ) // +---------------------------------------------------------------------- // | Author: liu21st <liu21st@gmail.com> // +---------------------------------------------------------------------- \think\Route::rule([ 'mselfshop'=>'app/shops/selfshop', //自营店铺 'mbrands'=>'app/brands/index', //自营店铺 'mstreet'=>'app/shops/shopstreet', //自营店铺 'mlogin'=>'app/users/login', //用户登录 'mregister'=>'app/users/toregister', //用户注册 'mforget'=>'app/users/forgetpass', //找回密码 'mgoods-<goodsId>'=>'app/goods/detail', 'mshops-<shopId>'=>'app/shops/index', 'mhshops-<shopId>'=>'app/shops/home', 'mlist'=>'app/goods/lists', 'mnews'=>'app/news/view', 'mcategoty'=>'app/goodscats/index', 'mshopgoods'=>'app/shops/shopgoodslist', ]);