123456789101112131415161718192021222324 |
- <?php
- $app = app()->router;
- /**
- * pc 无需auth路由
- * */
- $app->group([
- 'namespace' => 'App\Api\Controllers',
- 'prefix' => 'api',
- ], function () use ($app) {
- // 生成短地址
- $app->get('/short', ['uses' => 'ApiController@getShortUrl']);
- $app->post('/short', ['uses' => 'ApiController@getShortUrl']);
- $app->get('/short-hits', ['uses' => 'ApiController@getShortUrlHits']);
- });
- $app->group([
- 'namespace' => 'App\Api\Controllers',
- 'prefix' => ''
- ], function () use ($app) {
- $app->get('/{plink:[A-Za-z0-9]+}',[
- 'as' => 'moduleIndex', 'uses' => 'IndexController@index'
- ]);
- });
|