mirror of
https://gitee.com/ulthon/ulthon_information.git
synced 2026-03-04 00:24:29 +08:00
10 lines
246 B
PHP
10 lines
246 B
PHP
<?php
|
|
|
|
use think\facade\Route;
|
|
|
|
Route::rule('a:uid', 'Post/read');
|
|
Route::rule('i<category_id?>/s<sub_category_id?>/p<page?>', 'Index/index');
|
|
Route::rule('i<category_id?>/s/p<page?>', 'Index/index');
|
|
Route::rule('i/s/p<page?>', 'Index/index');
|
|
|