<?php
// | 全局路由
Route::get('/', 'index/index');
Route::get('/course', 'course/index');
Route::get('/course/:catid', 'course/index');
Route::get('/play/:id', 'course/play');
Route::get('/play/:id/:listid', 'course/play');
Route::get('/shows/:id', 'course/shows');
Route::get('/news/:id', 'index/shows');
Route::get('/lists', 'index/lists');
Route::get('/page', 'index/page');
Route::get('/xinke', 'index/xinke');
Route::get('/hot', 'index/hot');