19 lines
731 B
PHP
Executable File
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');
|
|
|