Files
shopxo/route/index.php
gongfuxiang 2995b258d2 dev -> tp5
2018-12-15 13:31:42 +08:00

19 lines
731 B
PHP
Executable File

<?php
// +----------------------------------------------------------------------
// | ThinkPHP [ WE CAN DO IT JUST THINK ]
// +----------------------------------------------------------------------
// | Copyright (c) 2006~2018 http://thinkphp.cn All rights reserved.
// +----------------------------------------------------------------------
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
// +----------------------------------------------------------------------
// | Author: liu21st <liu21st@gmail.com>
// +----------------------------------------------------------------------
// 首页
Route::get('/', 'index/index');
Route::get('/view', 'index/view');
// 商品详情
Route::get('goods-<id>', 'goods/index');