重新初始化

This commit is contained in:
2020-02-17 20:47:06 +08:00
parent 5c320206fb
commit 58d999ed73
4016 changed files with 1271 additions and 302396 deletions

View File

@@ -10,12 +10,13 @@
// +----------------------------------------------------------------------
use think\facade\Route;
Route::rule('/', 'Index/index');
Route::rule('search', 'Index/search');
Route::rule('lists', 'Index/lists');
Route::rule('detail', 'Index/detail');
Route::rule('category', 'Index/category');
Route::rule('topic-:id', 'Index/topic');
Route::rule('/', 'Front/index');
Route::rule('search', 'Front/search');
Route::rule('lists', 'Front/lists');
Route::rule('detail-:id', 'Front/detail');
Route::rule('category', 'Front/category');
Route::rule('topic-:id', 'Front/topic');
Route::rule('front/:function', 'Front/:function');
Route::group('admin', function () {
Route::rule('/', 'admin.Index/index');